| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- #include <string.h>
- #include "bsp/bsp.h"
- #include "libs/task.h"
- #include "math/fast_math.h"
- #include "hall_sensor.h"
- #include "foc/foc.h"
- #define HALL_READ_TIMES 7
- /*
- 100
- 101
- 001
- 011
- 010
- 110
- 4,5,1,3,2,6,4
- */
- static u16 _hall_table[] = {0xFFFF, 292/*1*/, 54/*2*/, 1/*3*/, 180/*4*/, 229/*5*/, 115/*6*/, 0xFFFF};
- static hall_t _hall;
- #define read_hall(h,t) {h = get_hall_stat(HALL_READ_TIMES); t = _hall_table[h];}
- #define tick_2_s(tick) ((float)tick / (float)SYSTEM_CLOCK)
- static u32 __inline delta_ticks(u32 prev) {
- u32 now = task_ticks_abs();
- if (now >= prev) {
- return (now - prev);
- }
- return (0xFFFFFFFFU - prev + now) + 1;
- }
- void hall_sensor_init(void) {
- memset(&_hall, 0, sizeof(_hall));
- read_hall(_hall.state, _hall.theta);
- }
- float hall_sensor_get_theta(void){
- if (!_hall.working) {
- read_hall(_hall.state, _hall.theta);
- return _hall.theta;
- }
- float est_theta = tick_2_s(delta_ticks(_hall.ticks)) * _hall.degree_per_s + _hall.theta;
- fast_norm_angle(&est_theta);
- return est_theta;
- }
- float hall_sensor_get_speed(void) {
- return _hall.e_rpm;
- }
- int hall_sensor_calibrate(float current, u16 *hall_table){
- foc_pwm_start(true);
- foc_overide_set_theta(0.0f);
- foc_overide_theta(true);
- foc_overide_set_vdq(0.0f, 0.0f);
- foc_overide_vdq(true);
-
- for (int i = 0;i < 1000;i++) {
- foc_overide_set_vdq((float)i * current / 1000.0f, 0.0f);
- task_udelay(1000);
- }
- float sin_hall[8];
- float cos_hall[8];
- int hall_iterations[8];
- memset(sin_hall, 0, sizeof(sin_hall));
- memset(cos_hall, 0, sizeof(cos_hall));
- memset(hall_iterations, 0, sizeof(hall_iterations));
- // Forwards
- for (int i = 0;i < 3;i++) {
- for (int j = 0;j < 360;j++) {
- foc_overide_set_theta(j);
- task_udelay(10 * 1000);
- int hall = get_hall_stat(7);
- float s, c;
- normal_sincosf(degree_2_pi(j), &s, &c);
- sin_hall[hall] += s;
- cos_hall[hall] += c;
- hall_iterations[hall]++;
- }
- }
- // Reverse
- for (int i = 0;i < 3;i++) {
- for (int j = 360;j >= 0;j--) {
- foc_overide_set_theta(j);
- task_udelay(10 * 1000);
- int hall = get_hall_stat(7);
- float s, c;
- normal_sincosf(degree_2_pi(j), &s, &c);
- sin_hall[hall] += s;
- cos_hall[hall] += c;
- hall_iterations[hall]++;
- }
- }
- foc_pwm_start(false);
- foc_overide_theta(false);
- foc_overide_vdq(false);
- int fails = 0;
- for(int i = 0;i < 8;i++) {
- if (hall_iterations[i] > 30) {
- float ang = pi_2_degree(atan2f(sin_hall[i], cos_hall[i]));
- fast_norm_angle(&ang);
- hall_table[i] = (u16)ang;
- } else {
- hall_table[i] = 0xFFFF;
- fails++;
- }
- }
- return fails == 2;
- }
- void hall_sensor_handler(void) {
- u8 state_now = get_hall_stat(HALL_READ_TIMES);
- float theta_now = _hall_table[state_now];
- u8 state_prev = _hall.state;
- float theta_prev = _hall.theta;
- if (!_hall.working) {
- if(theta_now != 0xFFFF) {
- _hall.working = true;
- _hall.state = state_now;
- _hall.theta = theta_now;
- _hall.ticks = task_ticks_abs();
- }
- return;
- }
- //printf("hall %d, %d\n", state_now, state_prev);
- float delta_theta = 360.0f;
- switch (state_now) {
- case STATE_1:
- if (state_prev == STATE_5) {
- _hall.direction = POSITIVE;
- delta_theta = theta_now - theta_prev;
- }else if (state_prev == STATE_3) {
- _hall.direction = NEGATIVE;
- delta_theta = 360 - theta_now + theta_prev;
- }
- break;
- case STATE_2:
- if (state_prev == STATE_3) {
- _hall.direction = POSITIVE;
- delta_theta = theta_now - theta_prev;
- }else if (state_prev == STATE_6) {
- _hall.direction = NEGATIVE;
- delta_theta = theta_prev - theta_now;
- }
- break;
- case STATE_3:
- if (state_prev == STATE_1) {
- _hall.direction = POSITIVE;
- delta_theta = 360 - theta_prev + theta_now;
- }else if (state_prev == STATE_2) {
- _hall.direction = NEGATIVE;
- delta_theta = theta_prev - theta_now;
- }
- break;
- case STATE_4:
- if (state_prev == STATE_6) {
- _hall.direction = POSITIVE;
- delta_theta = theta_now - theta_prev;
- }else if (state_prev == STATE_5) {
- _hall.direction = NEGATIVE;
- delta_theta = theta_prev - theta_now;
- }
- break;
- case STATE_5:
- if (state_prev == STATE_4) {
- _hall.direction = POSITIVE;
- delta_theta = theta_now - theta_prev;
- }else if (state_prev == STATE_1) {
- _hall.direction = NEGATIVE;
- delta_theta = theta_prev - theta_now;
- }
- break;
- case STATE_6:
- if (state_prev == STATE_2) {
- _hall.direction = POSITIVE;
- delta_theta = theta_now - theta_prev;
- }else if (state_prev == STATE_4) {
- _hall.direction = NEGATIVE;
- delta_theta = theta_prev - theta_now;
- }
- break;
- default:
- break;
- }
- if (delta_theta == 360.0f) { //no vilid hall
- return;
- }
- float delta_time = tick_2_s(delta_ticks(_hall.ticks));
- if (delta_time == 0.0f) { //may be errors ???
- return;
- }
- _hall.degree_per_s = delta_theta / delta_time;
- //printf("speed :%.4f - %.4f - %.4f - %d\n", _hall.degree_per_s, delta_theta, delta_time, state_now);
- _hall.ticks = task_ticks_abs();
- _hall.theta = theta_now;
- _hall.state = state_now;
- _hall.e_rpm = _hall.degree_per_s / 360.0f * 60.0f;
- }
|