motor.c 47 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708
  1. #include "foc/motor/motor.h"
  2. #include "foc/motor/current.h"
  3. #include "foc/foc_config.h"
  4. #include "foc/mc_error.h"
  5. #include "foc/samples.h"
  6. #include "math/fast_math.h"
  7. #include "bsp/bsp_driver.h"
  8. #include "libs/time_measure.h"
  9. #include "foc/commands.h"
  10. #include "libs/logger.h"
  11. #include "foc/samples.h"
  12. #include "foc/motor/motor_param.h"
  13. #include "foc/core/foc_observer.h"
  14. #include "foc/core/F_Calc.h"
  15. #include "foc/core/etcs.h"
  16. #include "app/nv_storage.h"
  17. #include "app/factory.h"
  18. #include "foc/motor/mot_params_ind.h"
  19. #include "foc/motor/throttle.h"
  20. #include "foc/limit.h"
  21. extern u32 enc_pwm_err_ms;
  22. extern s16 enc_delta_err1, enc_delta_err2;
  23. static bool mc_detect_hwbrake(void);
  24. static bool mc_is_gpio_mlock(void);
  25. static void _pwm_brake_prot_timer_handler(shark_timer_t *);
  26. static shark_timer_t _brake_prot_timer = TIMER_INIT(_brake_prot_timer, _pwm_brake_prot_timer_handler);
  27. static void _fan_det_timer_handler(shark_timer_t *);
  28. static shark_timer_t _fan_det_timer1 = TIMER_INIT(_fan_det_timer1, _fan_det_timer_handler);
  29. static shark_timer_t _fan_det_timer2 = TIMER_INIT(_fan_det_timer2, _fan_det_timer_handler);
  30. static void _encoder_zero_off_timer_handler(shark_timer_t *);
  31. static shark_timer_t _encoder_zero_off_timer = TIMER_INIT(_encoder_zero_off_timer, _encoder_zero_off_timer_handler);
  32. static void _led_off_timer_handler(shark_timer_t *);
  33. static shark_timer_t _led_off_timer = TIMER_INIT(_led_off_timer, _led_off_timer_handler);
  34. motor_t motor = {
  35. .s_direction = POSITIVE,
  36. .n_gear = 0,
  37. .b_high_vol_mode = false,
  38. .mode = CTRL_MODE_OPEN,
  39. .mos_lim = 0,
  40. .motor_lim = 0,
  41. .b_ind_start = false,
  42. .s_target_speed = MAX_S16,
  43. .s_force_torque = MAX_S16,
  44. .u_set.idc_lim = IDC_USER_LIMIT_NONE,
  45. .u_set.rpm_lim = RPM_USER_LIMIT_NONE,
  46. .u_set.ebrk_lvl = 0,
  47. .u_set.n_brkShutPower = CONFIG_Settings_BrkShutPower,
  48. .u_set.b_tcs = 0xFF,
  49. };
  50. /* 无感运行的挡位,限制速度,母线电流,最大扭矩 */
  51. static gear_t sensorless_gear = {
  52. .max_speed = CONFIG_SENSORLESS_MAX_SPEED,
  53. .max_torque = CONFIG_SENSORLESS_MAX_TORQUE,
  54. .max_idc = CONFIG_SENSORLESS_MAX_IDC,
  55. .zero_accl = 1500,
  56. .accl_time = 1500,
  57. .torque = {100, 80, 60, 50, 40, 30, 0, 0, 0, 0},
  58. };
  59. static runtime_node_t mc_error;
  60. static void MC_Check_MosVbusThrottle(void) {
  61. int count = 1000;
  62. float ibus_adc = 0;
  63. float vref_adc = 0;
  64. float vref_5v_adc = 0;
  65. gpio_phase_u_detect(true);
  66. while(count-- > 0) {
  67. task_udelay(20);
  68. sample_uvw_phase();
  69. sample_throttle();
  70. sample_vbus();
  71. vref_adc += adc_get_vref();
  72. vref_5v_adc += adc_get_5v_ref();
  73. }
  74. adc_set_vref_calc(vref_adc/1000.0f);
  75. adc_set_5vref_calc(vref_5v_adc/1000.0f);
  76. sys_debug("5v ref %f\n", vref_5v_adc/1000.0f);
  77. count = 50;
  78. while(count-- >0) {
  79. task_udelay(300);
  80. ibus_adc += adc_get_ibus();
  81. }
  82. u16 offset = ((float)ibus_adc)/50.0f;
  83. sys_debug("ibus offset %d\n", offset);
  84. sample_ibus_offset(offset);
  85. if (factory_is_running()) {
  86. return;
  87. }
  88. gpio_phase_u_detect(false);
  89. float abc[3];
  90. get_phase_vols_filtered(abc);
  91. int vbus_vol = get_vbus_int();
  92. if (vbus_vol > mc_conf()->c.max_dc_vol) {
  93. mc_set_critical_error(FOC_CRIT_OV_Vol_Err);
  94. }
  95. if (vbus_vol <= mc_conf()->c.min_dc_vol) {
  96. mc_set_critical_error(FOC_CRIT_UN_Vol_Err);
  97. }
  98. vbus_vol = get_acc_vol();
  99. sys_debug("acc vol %d\n", vbus_vol);
  100. if (vbus_vol >= mc_conf()->c.max_dc_vol) {
  101. mc_set_critical_error(FOC_CRIT_ACC_OV_Err);
  102. }
  103. if (vbus_vol <= mc_conf()->c.min_dc_vol) {
  104. mc_set_critical_error(FOC_CRIT_ACC_Un_Err);
  105. }
  106. if (throttle_is_all_error()) {
  107. if (!motor.b_ignor_throttle) {
  108. mc_set_critical_error(FOC_CRIT_THRO_Err);
  109. mc_set_critical_error(FOC_CRIT_THRO2_Err);
  110. }
  111. }
  112. if (abc[0] > vbus_vol/2 || abc[1] > vbus_vol/2 || abc[2] > vbus_vol/2) {
  113. mc_set_critical_error(FOC_CRIT_H_MOS_Err);
  114. }else if (abc[0] < 0.001f){
  115. mc_set_critical_error(FOC_CRIT_L_MOS_Err);
  116. }else if ((abc[0] > 0.5f) && (abc[1] < 0.001f || abc[2] < 0.001f)) {
  117. mc_set_critical_error(FOC_CRIT_Phase_Conn_Err);
  118. }
  119. sys_debug("phase vol %f, %f, %f\n", abc[0], abc[1], abc[2]);
  120. }
  121. static int hw_brk_err_cnt = 0;
  122. static int hw_brk_no_err_cnt = 0;
  123. static u32 _self_check_task(void *p) {
  124. if (factory_is_running()) {
  125. return 1000;
  126. }
  127. if (get_tick_ms() < 500) { //启动500ms内检测刹车状态是否正常,应该是没有刹车
  128. if (mc_detect_hwbrake() && hw_brk_err_cnt++ >= 60) {
  129. mc_set_critical_error(FOC_CRIT_BRK_Err);
  130. }
  131. }else {
  132. if (mc_critical_err_is_set(FOC_CRIT_BRK_Err) && !mc_detect_hwbrake()) {
  133. if (hw_brk_no_err_cnt++ >= 100) {
  134. mc_clr_critical_error(FOC_CRIT_BRK_Err);
  135. }
  136. }else {
  137. hw_brk_no_err_cnt = 0;
  138. }
  139. }
  140. if (ENC_Check_error()) {
  141. if (mc_set_critical_error(FOC_CRIT_Encoder_Err)) {
  142. mc_crit_err_add_s16(FOC_CRIT_Encoder_Err, -1);
  143. }
  144. }
  145. if (get_tick_ms() < 5000) { //启动后5s内检测锁电机线
  146. if (mc_is_gpio_mlock()) {
  147. mc_lock_motor(true);
  148. }
  149. }
  150. if (motor.b_lock_motor) {
  151. if (!mc_is_gpio_mlock()) {
  152. mc_lock_motor(false);
  153. }
  154. }
  155. if (!motor.b_ignor_throttle) {
  156. if (throttle_is_all_error()) {
  157. mc_set_critical_error(FOC_CRIT_THRO_Err);
  158. mc_set_critical_error(FOC_CRIT_THRO2_Err);
  159. }else if (throttle1_is_error()) {
  160. mc_set_critical_error(FOC_CRIT_THRO_Err);
  161. }else if (throttle2_is_error()) {
  162. mc_set_critical_error(FOC_CRIT_THRO2_Err);
  163. }
  164. }
  165. if (fan_pwm_is_running()) {
  166. #ifdef GPIO_FAN1_IN_GROUP
  167. if ((get_delta_ms(motor.fan[0].start_ts) >= 5000) && (motor.fan[0].rpm == 0)) {
  168. mc_set_critical_error(FOC_CRIT_Fan_Err);
  169. }else if (motor.fan[0].rpm > 0) {
  170. mc_clr_critical_error(FOC_CRIT_Fan_Err);
  171. }
  172. #endif
  173. }
  174. return 5;
  175. }
  176. static bool mc_detect_vbus_mode(void) {
  177. #ifdef CONFIG_FORCE_HIGH_VOL_MODE
  178. motor.b_high_vol_mode = true;
  179. return false;
  180. #else
  181. bool is_96mode = motor.b_high_vol_mode;
  182. motor.b_high_vol_mode = get_vbus_int() >= CONFIG_HIGH_VOL_MODE_MIN_VOL;
  183. return (is_96mode != motor.b_high_vol_mode);
  184. #endif
  185. }
  186. static void mc_internal_init(u8 mode, bool start) {
  187. motor.mode = mode;
  188. motor.throttle = 0;
  189. motor.b_start = start;
  190. motor.b_runStall = false;
  191. motor.runStall_time = 0;
  192. motor.b_epm = false;
  193. motor.b_epm_cmd_move = false;
  194. motor.epm_dir = EPM_Dir_None;
  195. motor.n_autohold_time = 0;
  196. motor.b_auto_hold = 0;
  197. motor.b_break = false;
  198. motor.b_wait_brk_release = false;
  199. motor.b_force_run = false;
  200. motor.b_cruise = false;
  201. motor.b_limit_pending = false;
  202. motor.f_epm_trq = 0;
  203. motor.f_epm_vel = 0;
  204. motor.vbus_le_cnt = motor.vbus_he_cnt = 0;
  205. motor.s_vbus_hw_min = mc_conf()->c.min_dc_vol;
  206. motor.s_vbus_hw_max = mc_conf()->c.max_dc_vol;
  207. }
  208. static void _led_off_timer_handler(shark_timer_t *t) {
  209. gpio_led_enable(false);
  210. }
  211. static void mc_gear_mode_set(void) {
  212. gear_t *gears = mc_gear_conf();
  213. if (gears != &sensorless_gear) {
  214. sensorless_gear.max_torque = gears->max_torque;
  215. }else { //slowly changed
  216. line_ramp_set_time(&motor.controller.ramp_vel_lim, CONFIG_SENSORLESS_RAMP_TIME);
  217. line_ramp_set_time(&motor.controller.ramp_dc_curr_lim, CONFIG_SENSORLESS_RAMP_TIME);
  218. }
  219. mot_contrl_set_vel_limit(&motor.controller, (float)min(gears->max_speed, motor.u_set.rpm_lim));
  220. mot_contrl_set_dccurr_limit(&motor.controller, (float)min(gears->max_idc, motor.u_set.idc_lim));
  221. mot_contrl_set_torque_limit(&motor.controller, (float)gears->max_torque);
  222. }
  223. void mc_init(void) {
  224. mc_internal_init(CTRL_MODE_OPEN, false);
  225. fan_pwm_init();
  226. adc_init();
  227. pwm_3phase_init();
  228. samples_init();
  229. motor_encoder_init();
  230. foc_command_init();
  231. throttle_init();
  232. mc_detect_vbus_mode();
  233. mot_contrl_init(&motor.controller);
  234. mc_gpio_init();
  235. MC_Check_MosVbusThrottle();
  236. sched_timer_enable(CONFIG_SPD_CTRL_US);
  237. shark_task_create(_self_check_task, NULL);
  238. pwm_up_enable(true);
  239. gpio_led_enable(true);
  240. shark_timer_post(&_led_off_timer, 5000);
  241. }
  242. motor_t * get_motor(void) {
  243. return &motor;
  244. }
  245. gear_t *mc_gear_conf_by_gear(u8 n_gear) {
  246. gear_t *gears;
  247. if (!foc_observer_is_encoder()) { //无感模式,受限运行
  248. return &sensorless_gear;
  249. }
  250. if (motor.b_high_vol_mode) {
  251. gears = &mc_conf()->g_n[0];
  252. }else {
  253. gears = &mc_conf()->g_l[0];
  254. }
  255. return &gears[n_gear];
  256. }
  257. gear_t *mc_gear_conf(void) {
  258. return mc_gear_conf_by_gear(motor.n_gear);
  259. }
  260. static __INLINE float gear_rpm_2_torque(u8 torque, s16 max) {
  261. return (float)torque/100.0f * max;
  262. }
  263. float mc_gear_max_torque(s16 vel, u8 gear_n) {
  264. gear_t *gear = mc_gear_conf_by_gear(gear_n);
  265. if (gear == NULL) {
  266. return 0;
  267. }
  268. vel = ABS(vel);
  269. if (vel <= 1000) {
  270. return gear_rpm_2_torque(gear->torque[0], gear->max_torque);
  271. }
  272. int vel_idx = vel / 1000;
  273. if (vel_idx >= CONFIG_GEAR_SPEED_TRQ_NUM -1 ) {
  274. return gear_rpm_2_torque(gear->torque[CONFIG_GEAR_SPEED_TRQ_NUM-1], gear->max_torque);
  275. }
  276. float torque_1 = gear_rpm_2_torque(gear->torque[vel_idx-1], gear->max_torque);
  277. float min_rpm = vel_idx * 1000;
  278. float torque_2 = gear_rpm_2_torque(gear->torque[vel_idx], gear->max_torque);
  279. float max_rpm = min_rpm + 1000;
  280. return f_map((float)vel, min_rpm, max_rpm, torque_1, torque_2);
  281. }
  282. /* 必须立即停机 */
  283. bool mc_critical_need_stop(void) {
  284. u32 mask = FOC_Cri_Err_Mask(FOC_CRIT_IDC_OV) | FOC_Cri_Err_Mask(FOC_CRIT_Angle_Err) | FOC_Cri_Err_Mask(FOC_CRIT_Phase_Err) |
  285. FOC_Cri_Err_Mask(FOC_CRIT_Vol_HW_Err) | FOC_Cri_Err_Mask(FOC_CRIT_OV_Vol_Err);
  286. u32 err = motor.n_CritiCalErrMask & mask;
  287. return (err != 0);
  288. }
  289. bool mc_critical_can_not_run(void) {
  290. u32 mask = FOC_Cri_Err_Mask(FOC_CRIT_MOTOR_TEMP_Lim) | FOC_Cri_Err_Mask(FOC_CRIT_MOS_TEMP_Lim);
  291. u32 err = motor.n_CritiCalErrMask & mask;
  292. bool crit_err = (err != 0) || mc_critical_need_stop();
  293. if (!motor.b_ignor_throttle) {
  294. crit_err = crit_err || throttle_is_all_error();
  295. }
  296. return crit_err;
  297. }
  298. bool mc_unsafe_critical_error(void) {
  299. u32 err = motor.n_CritiCalErrMask & (~(FOC_Cri_Err_Mask(FOC_CRIT_Fan_Err)));
  300. #ifdef CONFIG_DQ_STEP_RESPONSE
  301. sys_debug("err=0x%x\n", err);
  302. err = err & (~(FOC_Cri_Err_Mask(FOC_CRIT_Encoder_Err)));
  303. err = err & (~(FOC_Cri_Err_Mask(FOC_CRIT_THRO_Err)));
  304. err = err & (~(FOC_Cri_Err_Mask(FOC_CRIT_THRO2_Err)));
  305. sys_debug("err=0x%x\n", err);
  306. #else
  307. if (!throttle_is_all_error()) {//不是两个转把都有问题,忽略出问题的转把错误
  308. if (throttle1_is_error()) {
  309. err = err & (~(FOC_Cri_Err_Mask(FOC_CRIT_THRO_Err)));
  310. }else if (throttle2_is_error()) {
  311. err = err & (~(FOC_Cri_Err_Mask(FOC_CRIT_THRO2_Err)));
  312. }
  313. }
  314. #endif
  315. if (motor.b_ignor_throttle) {
  316. err = err & (~(FOC_Cri_Err_Mask(FOC_CRIT_THRO_Err)));
  317. err = err & (~(FOC_Cri_Err_Mask(FOC_CRIT_THRO2_Err)));
  318. }
  319. return (err != 0);
  320. }
  321. bool mc_start(u8 mode) {
  322. if (motor.b_start) {
  323. return true;
  324. }
  325. #ifdef CONFIG_DQ_STEP_RESPONSE
  326. mode = CTRL_MODE_CURRENT;
  327. #endif
  328. motor.s_force_torque = MAX_S16;
  329. mc_detect_vbus_mode();
  330. etcs_enable(&motor.controller.etcs, mc_tcs_is_enabled());
  331. if (motor.b_lock_motor) {
  332. mot_contrl_set_error(&motor.controller, FOC_NotAllowed);
  333. return false;
  334. }
  335. MC_Check_MosVbusThrottle();
  336. if (mc_unsafe_critical_error()) {
  337. mot_contrl_set_error(&motor.controller, FOC_Have_CritiCal_Err);
  338. return false;
  339. }
  340. if (mode > CTRL_MODE_CURRENT) {
  341. mot_contrl_set_error(&motor.controller, FOC_Param_Err);
  342. return false;
  343. }
  344. if (mot_contrl_get_speed(&motor.controller) > CONFIG_ZERO_SPEED_RPM) {
  345. mot_contrl_set_error(&motor.controller, FOC_NowAllowed_With_Speed);
  346. return false;
  347. }
  348. if (!mc_throttle_released()) {
  349. mot_contrl_set_error(&motor.controller, FOC_Throttle_Err);
  350. return false;
  351. }
  352. pwm_up_enable(false);
  353. u32 mask = cpu_enter_critical();
  354. mc_internal_init(mode, true);
  355. throttle_torque_reset();
  356. motor_encoder_start(true);
  357. mot_contrl_start(&motor.controller, mode);
  358. mot_contrl_set_torque_ramp_time(&motor.controller, mc_gear_conf()->zero_accl, mc_conf()->c.thro_dec_time);
  359. mc_set_ebrk_level(motor.u_set.ebrk_lvl);
  360. mc_gear_mode_set();
  361. cpu_exit_critical(mask);
  362. pwm_turn_on_low_side();
  363. delay_ms(10);
  364. phase_current_offset_calibrate();
  365. pwm_start();
  366. delay_us(10); //wait for ebrake error
  367. if (mc_unsafe_critical_error()) {
  368. mc_stop();
  369. return false;
  370. }
  371. adc_start_convert();
  372. phase_current_calibrate_wait();
  373. if (phase_curr_offset_check()) {
  374. mot_contrl_set_error(&motor.controller, FOC_CRIT_CURR_OFF_Err);
  375. mc_stop();
  376. return false;
  377. }
  378. if (mc_detect_hwbrake()) {
  379. mot_contrl_set_hw_brake(&motor.controller, true);
  380. }
  381. return true;
  382. }
  383. bool mc_stop(void) {
  384. if (!motor.b_start) {
  385. return true;
  386. }
  387. if (motor.b_lock_motor) {
  388. mot_contrl_set_error(&motor.controller, FOC_NotAllowed);
  389. return false;
  390. }
  391. if (mot_contrl_get_speed(&motor.controller) > CONFIG_ZERO_SPEED_RPM) {
  392. mot_contrl_set_error(&motor.controller, FOC_NowAllowed_With_Speed);
  393. return false;
  394. }
  395. u32 mask = cpu_enter_critical();
  396. mc_internal_init(CTRL_MODE_OPEN, false);
  397. adc_stop_convert();
  398. pwm_stop();
  399. mot_contrl_stop(&motor.controller);
  400. motor_encoder_start(false);
  401. pwm_up_enable(true);
  402. cpu_exit_critical(mask);
  403. return true;
  404. }
  405. void mc_set_mos_lim_level(u8 l) {
  406. if (motor.mos_lim != l) {
  407. mc_crit_err_add(FOC_EV_MOS_Limit_L, l, get_mos_temp_raw());
  408. }
  409. motor.mos_lim = l;
  410. }
  411. void mc_set_motor_lim_level(u8 l) {
  412. if (motor.motor_lim != l) {
  413. mc_crit_err_add(FOC_EV_MOT_Limit_L, l, get_motor_temp_raw());
  414. }
  415. motor.motor_lim = l;
  416. }
  417. bool mc_set_gear(u8 gear) {
  418. if (gear >= CONFIG_MAX_GEARS) {
  419. mot_contrl_set_error(&motor.controller, FOC_Param_Err);
  420. return false;
  421. }
  422. if (motor.n_gear != gear) {
  423. #if TURBO_GEAR_AUTO_EXIT_TIME>0
  424. if (gear == TURBO_GEAR) {
  425. if (motor.mos_lim != 0 || motor.motor_lim != 0) {
  426. mot_contrl_set_error(&motor.controller, FOC_NotAllowed);
  427. return false;
  428. }
  429. if (get_motor_temp_raw() >= TURBO_MIN_MOTOR_TEMP || get_mos_temp_raw() >= TURBO_MIN_MOS_TEMP) {
  430. mot_contrl_set_error(&motor.controller, FOC_NotAllowed);
  431. return false;
  432. }
  433. motor.gear_last = motor.n_gear;
  434. motor.turbo_time = get_tick_ms();
  435. }
  436. #endif
  437. u32 mask = cpu_enter_critical();
  438. motor.n_gear = gear;
  439. mc_gear_mode_set();
  440. cpu_exit_critical(mask);
  441. }
  442. return true;
  443. }
  444. static void mc_turbo_auto_exit(void) {
  445. #if TURBO_GEAR_AUTO_EXIT_TIME>0
  446. if (motor.n_gear != TURBO_GEAR) {
  447. return;
  448. }
  449. if (motor.mos_lim != 0 || motor.motor_lim != 0) {
  450. mc_set_gear(motor.gear_last);
  451. return;
  452. }
  453. u32 delta_time = get_delta_ms(motor.turbo_time);
  454. if (delta_time >= TURBO_GEAR_AUTO_EXIT_TIME) {
  455. motor.turbo_remain_sec = 0;
  456. mc_set_gear(motor.gear_last);
  457. return;
  458. }else {
  459. motor.turbo_remain_sec = (TURBO_GEAR_AUTO_EXIT_TIME - delta_time) / 1000;
  460. }
  461. #endif
  462. }
  463. u8 mc_get_gear(void) {
  464. if (motor.n_gear == 3){
  465. return 0;
  466. }
  467. return motor.n_gear + 1;
  468. }
  469. u8 mc_get_internal_gear(void) {
  470. return motor.n_gear;
  471. }
  472. bool mc_tcs_is_enabled(void) {
  473. bool tcs_enabled = mc_conf()->s.tcs_enable;
  474. if (motor.u_set.b_tcs == 0) {
  475. tcs_enabled = false;
  476. }else if (motor.u_set.b_tcs == 1) {
  477. tcs_enabled = true;
  478. }
  479. return tcs_enabled;
  480. }
  481. bool mc_hwbrk_can_shutpower(void) {
  482. if (motor.u_set.n_brkShutPower != MAX_U8) {
  483. return (motor.u_set.n_brkShutPower != 0);
  484. }
  485. return (mc_conf()->s.brk_shut_power != 0);
  486. }
  487. bool mc_enable_cruise(bool enable) {
  488. if (enable == motor.b_cruise) {
  489. return true;
  490. }
  491. if (mot_contrl_set_cruise(&motor.controller, enable)) {
  492. motor.b_cruise = enable;
  493. motor.cruise_time = enable?shark_get_seconds():0;
  494. motor.cruise_torque = 0.0f;
  495. return true;
  496. }
  497. return false;
  498. }
  499. bool mc_set_target_vel(s16 vel) {
  500. if (motor.mode != CTRL_MODE_SPD || mc_is_epm()) {
  501. return false;
  502. }
  503. motor.s_target_speed = vel;
  504. return true;
  505. }
  506. bool mc_set_force_torque(s16 torque) {
  507. if (motor.mode != CTRL_MODE_TRQ) {
  508. return false;
  509. }
  510. if (torque == MAX_S16) {
  511. motor.s_force_torque = MAX_S16;
  512. }else {
  513. motor.s_force_torque = fclamp(torque, -mc_gear_conf()->max_torque, mc_gear_conf()->max_torque);
  514. }
  515. return true;
  516. }
  517. bool mc_is_cruise_enabled(void) {
  518. return motor.b_cruise;
  519. }
  520. bool mc_set_cruise_speed(bool rpm_abs, float target_rpm) {
  521. bool ret;
  522. if (rpm_abs) {
  523. ret = mot_contrl_set_cruise_speed(&motor.controller, target_rpm);
  524. }else {
  525. ret = mot_contrl_set_cruise_speed(&motor.controller, mot_contrl_get_speed(&motor.controller) + target_rpm);
  526. }
  527. if (ret) {
  528. motor.cruise_time = shark_get_seconds();
  529. motor.cruise_torque = 0.0f;
  530. }
  531. return ret;
  532. }
  533. void mc_set_idc_limit(s16 limit) {
  534. if ((limit == motor.u_set.idc_lim) || (limit < 0)) {
  535. return;
  536. }
  537. motor.u_set.idc_lim = limit;
  538. mc_gear_mode_set();
  539. }
  540. void mc_set_rpm_limit(s16 limit) {
  541. if ((limit == motor.u_set.rpm_lim) || (limit < 0)) {
  542. return;
  543. }
  544. motor.u_set.rpm_lim = limit;
  545. mc_gear_mode_set();
  546. }
  547. bool mc_set_ebrk_level(u8 level) {
  548. if (level < CONFIG_EBRK_LVL_NUM) {
  549. motor.u_set.ebrk_lvl = level;
  550. mot_contrl_set_ebrk_time(&motor.controller, mc_get_ebrk_time());
  551. mot_contrl_set_ebrk_torquer(&motor.controller, mc_get_ebrk_torque());
  552. return true;
  553. }
  554. return false;
  555. }
  556. void mc_enable_brkshutpower(u8 shut) {
  557. motor.u_set.n_brkShutPower = shut;
  558. }
  559. void mc_enable_tcs(bool enable) {
  560. motor.u_set.b_tcs = enable?1:0;
  561. etcs_enable(&motor.controller.etcs, enable);
  562. }
  563. s16 mc_get_ebrk_torque(void) {
  564. if (motor.u_set.ebrk_lvl < CONFIG_EBRK_LVL_NUM) {
  565. return min(mc_conf()->e_r[motor.u_set.ebrk_lvl].torque, mc_conf()->c.max_ebrk_torque);
  566. }
  567. return 0;
  568. }
  569. u16 mc_get_ebrk_time(void) {
  570. if (motor.u_set.ebrk_lvl < CONFIG_EBRK_LVL_NUM) {
  571. return (u16)mc_conf()->e_r[motor.u_set.ebrk_lvl].time;
  572. }
  573. return 0xFFFF;
  574. }
  575. bool mc_set_ctrl_mode(u8 mode) {
  576. if (mode == motor.mode) {
  577. return true;
  578. }
  579. if (!motor.b_start && !motor.b_ind_start) {
  580. return false;
  581. }
  582. if (mc_critical_can_not_run()) {
  583. return false;
  584. }
  585. if ((mode == CTRL_MODE_OPEN) && (ABS(mot_contrl_get_speed(&motor.controller)) > CONFIG_ZERO_SPEED_RPM)) {
  586. mot_contrl_set_error(&motor.controller, FOC_NotAllowed);
  587. return false;
  588. }
  589. u32 mask = cpu_enter_critical();
  590. bool ret = false;
  591. if (mot_contrl_request_mode(&motor.controller, mode)) {
  592. motor.mode = mode;
  593. if ((mode == CTRL_MODE_OPEN || mode == CTRL_MODE_CURRENT) && !mot_contrl_is_start(&motor.controller)) {
  594. mot_contrl_start(&motor.controller, motor.mode);
  595. pwm_enable_channel();
  596. }
  597. ret = true;
  598. }
  599. cpu_exit_critical(mask);
  600. return ret;
  601. }
  602. bool mc_start_epm(bool epm) {
  603. if (motor.b_epm == epm) {
  604. return true;
  605. }
  606. if (!motor.b_start) {
  607. mot_contrl_set_error(&motor.controller, FOC_NotAllowed);
  608. return false;
  609. }
  610. if (motor_encoder_get_speed() > CONFIG_ZERO_SPEED_RPM) {
  611. mot_contrl_set_error(&motor.controller, FOC_NowAllowed_With_Speed);
  612. return false;
  613. }
  614. if (!mc_throttle_released()) {
  615. mot_contrl_set_error(&motor.controller, FOC_Throttle_Err);
  616. return false;
  617. }
  618. u32 mask = cpu_enter_critical();
  619. motor.b_epm = epm;
  620. motor.f_epm_vel = 0.0f;
  621. motor.f_epm_trq = 0.0f;
  622. motor_encoder_band_epm(epm);
  623. if (epm) {
  624. mot_contrl_set_target_vel(&motor.controller, 0);
  625. motor.mode = CTRL_MODE_SPD;
  626. motor.epm_dir = EPM_Dir_None;
  627. mot_contrl_set_torque_limit(&motor.controller, mc_conf()->c.max_epm_torque);
  628. mot_contrl_request_mode(&motor.controller, CTRL_MODE_SPD);
  629. }else {
  630. motor.epm_dir = EPM_Dir_None;
  631. motor.mode = CTRL_MODE_TRQ;
  632. motor.b_epm_cmd_move = false;
  633. mot_contrl_request_mode(&motor.controller, CTRL_MODE_TRQ);
  634. mot_contrl_set_torque_limit_rttime(&motor.controller, CONFIG_LIMIT_RAMP_TIME);
  635. mot_contrl_set_vel_rttime(&motor.controller, CONFIG_CRUISE_RAMP_TIME);
  636. mc_gear_mode_set();
  637. }
  638. cpu_exit_critical(mask);
  639. return false;
  640. }
  641. bool mc_is_epm(void) {
  642. return motor.b_epm;
  643. }
  644. bool mc_is_start(void) {
  645. return (motor.b_start || mot_contrl_is_start(&motor.controller));
  646. }
  647. bool mc_start_epm_move(epm_dir_t dir, bool is_command) {
  648. if (!motor.b_epm || !motor.b_start) {
  649. mot_contrl_set_error(&motor.controller, FOC_NotAllowed);
  650. return false;
  651. }
  652. if ((dir == motor.epm_dir) && (is_command == motor.b_epm_cmd_move)) {
  653. return true;
  654. }
  655. u32 mask = cpu_enter_critical();
  656. if (motor.epm_dir != dir) {
  657. motor.f_epm_vel = 0.0f;
  658. motor.f_epm_trq = 0.0f;
  659. }
  660. motor.epm_dir = dir;
  661. if (dir != EPM_Dir_None) {
  662. motor.b_epm_cmd_move = is_command;
  663. if (!mot_contrl_is_start(&motor.controller)) {
  664. mot_contrl_start(&motor.controller, motor.mode);
  665. mc_gear_mode_set();
  666. pwm_enable_channel();
  667. }else if (mot_contrl_is_auto_holdding(&motor.controller)) {
  668. mc_auto_hold(false);
  669. }
  670. mot_contrl_velloop_params(&motor.controller, mc_conf()->c.epm_pid.kp, mc_conf()->c.epm_pid.ki);
  671. mot_contrl_set_torque_limit_rttime(&motor.controller, 2.0);
  672. mot_contrl_set_torque_limit(&motor.controller, motor.f_epm_trq);
  673. mot_contrl_set_vel_rttime(&motor.controller, 1000.0f);
  674. mot_contrl_set_target_vel(&motor.controller, motor.f_epm_vel);
  675. }else {
  676. motor.b_epm_cmd_move = false;
  677. mot_contrl_velloop_params(&motor.controller, mc_conf()->c.pid[PID_Vel_ID].kp, mc_conf()->c.pid[PID_Vel_ID].ki);
  678. mot_contrl_set_target_vel(&motor.controller, 0);
  679. }
  680. cpu_exit_critical(mask);
  681. return true;
  682. }
  683. void mc_set_fan_duty(u8 duty) {
  684. sys_debug("fan duty %d\n", duty);
  685. if (!fan_pwm_is_running() && duty > 0) {
  686. motor.fan[0].start_ts = get_tick_ms();
  687. motor.fan[1].start_ts = get_tick_ms();
  688. shark_timer_post(&_fan_det_timer1, 5000);
  689. shark_timer_post(&_fan_det_timer2, 5000);
  690. }else if (duty == 0) {
  691. shark_timer_cancel(&_fan_det_timer1);
  692. shark_timer_cancel(&_fan_det_timer2);
  693. }
  694. fan_set_duty(duty);
  695. }
  696. bool mc_command_epm_move(epm_dir_t dir) {
  697. return mc_start_epm_move(dir, true);
  698. }
  699. bool mc_throttle_epm_move(epm_dir_t dir) {
  700. return mc_start_epm_move(dir, false);
  701. }
  702. void mc_set_throttle_r(bool use, u8 r) {
  703. motor.u_throttle_ration = r;
  704. motor.b_ignor_throttle = use;
  705. if (motor.b_ignor_throttle) {
  706. mc_clr_critical_error(FOC_CRIT_THRO_Err);
  707. mc_clr_critical_error(FOC_CRIT_THRO2_Err);
  708. }
  709. }
  710. void mc_use_throttle(void) {
  711. motor.b_ignor_throttle = false;
  712. }
  713. void mc_get_running_status(u8 *data) {
  714. data[0] = motor.mode;
  715. data[0] |= (mot_contrl_is_auto_holdding(&motor.controller)?1:0) << 2;
  716. data[0] |= (motor.b_break?1:0) << 3;
  717. data[0] |= (motor.b_cruise?1:0) << 4;
  718. data[0] |= (motor.b_start?1:0) << 5;
  719. data[0] |= (mc_is_epm()?1:0) << 6;
  720. data[0] |= (motor.b_lock_motor) << 7; //motor locked
  721. }
  722. u16 mc_get_running_status2(void) {
  723. u16 data = 0;
  724. data = motor.b_start?1:0;
  725. data |= (motor.n_gear & 0x7) << 1;
  726. data |= (mot_contrl_is_auto_holdding(&motor.controller)?1:0) << 3;
  727. data |= (motor.b_break?1:0) << 4;
  728. data |= (motor.b_cruise?1:0) << 5;
  729. data |= (mc_is_epm()?1:0) << 6;
  730. data |= (motor.b_lock_motor) << 7; //motor locked
  731. data |= (mot_contrl_ebrk_is_running(&motor.controller)?1:0) << 8; //能量回收运行标志
  732. data |= ((motor.n_CritiCalErrMask != 0)?1:0) << 9;
  733. data |= (fan_pwm_is_running()?1:0) << 10; //风扇是否运行
  734. data |= (motor.b_runStall?1:0) << 11; //是否堵转
  735. data |= (mot_contrl_dccurr_is_protected(&motor.controller)?1:0) << 12; //是否欠压限制母线电流
  736. data |= (mot_contrl_torque_is_protected(&motor.controller)?1:0) << 13; //是否高温限扭矩
  737. data |= (etcs_is_running(&motor.controller.etcs)?1:0) << 14; //电子tcs是否正在工作
  738. data |= (throttle_not_released_err()?1:0) << 15;
  739. return data;
  740. }
  741. static float _force_angle = 0.0f;
  742. static int _force_wait = 2000;
  743. /* 开环,强制给定电角度和DQ的电压 */
  744. void mc_force_run_open(s16 vd, s16 vq, bool align) {
  745. if (motor.b_start || motor.b_force_run) {
  746. if (vd == 0 && vq == 0) {
  747. mot_contrl_set_vdq(&motor.controller, 0, 0);
  748. delay_ms(500);
  749. wdog_reload();
  750. adc_stop_convert();
  751. pwm_stop();
  752. mot_contrl_stop(&motor.controller);
  753. pwm_up_enable(true);
  754. motor.b_force_run = false;
  755. motor.b_ignor_throttle = false;
  756. }
  757. return;
  758. }
  759. if (vd == 0 && vq == 0) {
  760. return;
  761. }
  762. motor.b_ignor_throttle = true;
  763. MC_Check_MosVbusThrottle();
  764. if (mc_unsafe_critical_error()) {
  765. mot_contrl_set_error(&motor.controller, FOC_Have_CritiCal_Err);
  766. }
  767. pwm_up_enable(false);
  768. pwm_turn_on_low_side();
  769. task_udelay(500);
  770. mot_contrl_start(&motor.controller, CTRL_MODE_OPEN);
  771. phase_current_offset_calibrate();
  772. pwm_start();
  773. adc_start_convert();
  774. pwm_enable_channel();
  775. phase_current_calibrate_wait();
  776. mot_contrl_set_angle(&motor.controller, 0);
  777. mot_contrl_set_vdq(&motor.controller, (float)vd, 0);
  778. if (align) {
  779. _force_wait = 2000 + 1;
  780. }else {
  781. _force_wait = 2000;
  782. }
  783. motor.b_force_run = true;
  784. }
  785. bool mc_ind_motor_start(bool start) {
  786. if (start == motor.b_ind_start) {
  787. return true;
  788. }
  789. if (start) {
  790. motor.b_ignor_throttle = true;
  791. MC_Check_MosVbusThrottle();
  792. if (mc_unsafe_critical_error() || mot_params_flux_pending()) {
  793. mot_contrl_set_error(&motor.controller, FOC_Have_CritiCal_Err);
  794. return false;
  795. }
  796. pwm_up_enable(false);
  797. pwm_turn_on_low_side();
  798. task_udelay(500);
  799. mot_contrl_start(&motor.controller, CTRL_MODE_OPEN);
  800. phase_current_offset_calibrate();
  801. pwm_start();
  802. adc_start_convert();
  803. pwm_enable_channel();
  804. phase_current_calibrate_wait();
  805. mot_contrl_set_vdq_immediate(&motor.controller, 0, 0);
  806. motor.b_ind_start = start;
  807. }else {
  808. u32 mask = cpu_enter_critical();
  809. motor.b_ind_start = start;
  810. mot_contrl_set_vdq(&motor.controller, 0, 0);
  811. cpu_exit_critical(mask);
  812. delay_us(500);
  813. wdog_reload();
  814. adc_stop_convert();
  815. pwm_stop();
  816. mot_contrl_stop(&motor.controller);
  817. motor.mode = CTRL_MODE_OPEN;
  818. pwm_up_enable(true);
  819. motor.b_ignor_throttle = false;
  820. }
  821. return true;
  822. }
  823. static void _encoder_zero_off_timer_handler(shark_timer_t *t){
  824. if (!motor.b_calibrate) {
  825. return;
  826. }
  827. float enc_off = 0.0f;
  828. float phase = motor_encoder_zero_phase_detect(&enc_off);
  829. mot_contrl_set_vdq(&motor.controller, 0, 0);
  830. delay_ms(50);
  831. adc_stop_convert();
  832. pwm_stop();
  833. mot_contrl_stop(&motor.controller);
  834. mc_internal_init(CTRL_MODE_OPEN, false);
  835. motor.b_calibrate = false;
  836. }
  837. bool mc_encoder_zero_calibrate(s16 vd) {
  838. if (motor.b_calibrate) {
  839. if (vd == 0) {
  840. encoder_clear_cnt_offset();
  841. shark_timer_cancel(&_encoder_zero_off_timer);
  842. mot_contrl_set_vdq(&motor.controller, 0, 0);
  843. delay_ms(500);
  844. adc_stop_convert();
  845. pwm_stop();
  846. mot_contrl_stop(&motor.controller);
  847. mc_internal_init(CTRL_MODE_OPEN, false);
  848. motor.b_calibrate = false;
  849. motor.b_ignor_throttle = false;
  850. }
  851. return true;
  852. }
  853. encoder_clear_cnt_offset();
  854. motor.b_ignor_throttle = true;
  855. MC_Check_MosVbusThrottle();
  856. if (mc_unsafe_critical_error()) {
  857. mot_contrl_set_error(&motor.controller, FOC_Have_CritiCal_Err);
  858. return false;
  859. }
  860. mc_internal_init(CTRL_MODE_OPEN, true);
  861. motor.b_calibrate = true;
  862. pwm_turn_on_low_side();
  863. task_udelay(500);
  864. mot_contrl_start(&motor.controller, CTRL_MODE_OPEN);
  865. phase_current_offset_calibrate();
  866. pwm_start();
  867. adc_start_convert();
  868. pwm_enable_channel();
  869. phase_current_calibrate_wait();
  870. mot_contrl_set_angle(&motor.controller, 0);
  871. mot_contrl_set_vdq(&motor.controller, vd, 0);
  872. shark_timer_post(&_encoder_zero_off_timer, 6*1000);
  873. return true;
  874. }
  875. bool mc_current_sensor_calibrate(float current) {
  876. if (!mc_start(CTRL_MODE_OPEN)) {
  877. return false;
  878. }
  879. phase_current_sensor_start_calibrate(current);
  880. phase_current_calibrate_wait();
  881. return true;
  882. }
  883. bool mc_lock_motor(bool lock) {
  884. if (motor.b_lock_motor == lock) {
  885. return true;
  886. }
  887. int ret = true;
  888. u32 mask = cpu_enter_critical();
  889. if (motor.b_start) {
  890. mot_contrl_set_error(&motor.controller, FOC_NotAllowed);
  891. ret = false;
  892. goto ml_ex_cri;
  893. }
  894. if (lock && (motor_encoder_get_speed() >= CONFIG_LOCK_MOTOR_MIN_RPM)) {
  895. mot_contrl_set_error(&motor.controller, FOC_NowAllowed_With_Speed);
  896. ret = false;
  897. goto ml_ex_cri;
  898. }
  899. motor.b_lock_motor = lock;
  900. if (lock) {
  901. pwm_start();
  902. pwm_update_duty(0, 0, 0);
  903. pwm_enable_channel();
  904. }else {
  905. pwm_stop();
  906. }
  907. ml_ex_cri:
  908. cpu_exit_critical(mask);
  909. return ret;
  910. }
  911. bool mc_auto_hold(bool hold) {
  912. if (motor.b_auto_hold == hold) {
  913. return true;
  914. }
  915. if (!mc_conf()->s.auto_hold) {
  916. mot_contrl_set_error(&motor.controller, FOC_NotAllowed);
  917. return false;
  918. }
  919. if (!motor.b_start) {
  920. mot_contrl_set_error(&motor.controller, FOC_NotAllowed);
  921. return false;
  922. }
  923. if (hold && !mc_throttle_released()) {
  924. mot_contrl_set_error(&motor.controller, FOC_Throttle_Err);
  925. return false;
  926. }
  927. u32 mask = cpu_enter_critical();
  928. motor.b_auto_hold = hold;
  929. if (!mot_contrl_is_start(&motor.controller)) {
  930. mot_contrl_start(&motor.controller, motor.mode);
  931. mot_contrl_set_autohold(&motor.controller, hold);
  932. pwm_enable_channel();
  933. }else {
  934. mot_contrl_set_autohold(&motor.controller, hold);
  935. }
  936. cpu_exit_critical(mask);
  937. return true;
  938. }
  939. bool mc_set_critical_error(u8 err) {
  940. if (mc_critical_err_is_set(err)) {
  941. return false;
  942. }
  943. motor.n_CritiCalErrMask |= (1u << err);
  944. return true;
  945. }
  946. void mc_clr_critical_error(u8 err) {
  947. motor.n_CritiCalErrMask &= ~(1u << err);
  948. }
  949. bool mc_critical_err_is_set(u8 err) {
  950. u32 mask = (1u << err);
  951. return (motor.n_CritiCalErrMask & mask) != 0;
  952. }
  953. u32 mc_get_critical_error(void) {
  954. return motor.n_CritiCalErrMask;
  955. }
  956. bool mc_throttle_released(void) {
  957. if (motor.s_force_torque != MAX_S16) {
  958. return motor.s_force_torque == 0;
  959. }
  960. if (motor.b_ignor_throttle) {
  961. return motor.u_throttle_ration == 0;
  962. }
  963. return throttle_is_released();
  964. }
  965. static bool mc_is_gpio_mlock(void) {
  966. int count = 50;
  967. int settimes = 0;
  968. while(count-- > 0) {
  969. bool b1 = gpio_motor_locked();
  970. if (b1) {
  971. settimes ++;
  972. }
  973. delay_us(1);
  974. }
  975. if (settimes == 0) {
  976. return false;
  977. }else if (settimes == 50) {
  978. return true;
  979. }
  980. //有干扰,do nothing
  981. return false;
  982. }
  983. static bool _mc_is_hwbrake(void) {
  984. int count = 50;
  985. int settimes = 0;
  986. while(count-- > 0) {
  987. bool b1 = mc_get_gpio_brake() || mc_get_gpio_brake1();
  988. if (b1) {
  989. settimes ++;
  990. }
  991. delay_us(1);
  992. }
  993. if (settimes == 0) {
  994. #if GPIO_BREAK_MODE==GPIO_LOW_BRK_MODE
  995. return true;
  996. #else
  997. return false;
  998. #endif
  999. }else if (settimes == 50) {
  1000. #if GPIO_BREAK_MODE==GPIO_LOW_BRK_MODE
  1001. return false;
  1002. #else
  1003. return true;
  1004. #endif
  1005. }
  1006. //有干扰,do nothing
  1007. motor.n_brake_errors++;
  1008. return false;
  1009. }
  1010. static bool mc_detect_hwbrake(void) {
  1011. motor.b_break = _mc_is_hwbrake();
  1012. return motor.b_break;
  1013. }
  1014. static void _fan_det_timer_handler(shark_timer_t *t) {
  1015. if (t == &_fan_det_timer1) {
  1016. motor.fan[0].rpm = 0;
  1017. motor.fan[0].det_ts = 0;
  1018. }else {
  1019. motor.fan[1].rpm = 0;
  1020. motor.fan[1].det_ts = 0;
  1021. }
  1022. }
  1023. void Fan_IRQHandler(int idx) {
  1024. fan_t *fan = motor.fan + idx;
  1025. u32 pre_ts = fan->det_ts;
  1026. u32 delta_ts = get_delta_ms(pre_ts);
  1027. fan->det_ts = get_tick_ms();
  1028. float rpm = 60.0f * 1000 / (float)delta_ts;
  1029. LowPass_Filter(fan->rpm, rpm, 0.1f);
  1030. if (idx == 0) {
  1031. shark_timer_post(&_fan_det_timer1, 100);
  1032. }else {
  1033. shark_timer_post(&_fan_det_timer2, 100);
  1034. }
  1035. }
  1036. void MC_Brake_IRQHandler(void) {
  1037. mc_detect_hwbrake();
  1038. if (!motor.b_start) {
  1039. return;
  1040. }
  1041. if (motor.b_break) {
  1042. mc_enable_cruise(false);
  1043. mot_contrl_set_hw_brake(&motor.controller, true);
  1044. }else {
  1045. mot_contrl_set_hw_brake(&motor.controller, false);
  1046. }
  1047. }
  1048. static void _pwm_brake_prot_timer_handler(shark_timer_t *t){
  1049. pwm_brake_enable(true);
  1050. sys_debug("MC protect error\n");
  1051. }
  1052. static void mc_save_err_runtime(void) {
  1053. mc_error.vbus_x10 = (s16)(sample_vbus_raw() * 10.0f);
  1054. mc_error.ibus_x10 = (s16)(sample_ibus_raw() * 10.0f);
  1055. mc_error.vacc_x10 = (s16) (sample_acc_vol_raw() * 10.0f);
  1056. mc_error.id_ref_x10 = (s16)(motor.controller.foc.in.target_id.interpolation * 10.0f);
  1057. mc_error.iq_ref_x10 = (s16)(motor.controller.foc.in.target_iq.interpolation * 10.0f);
  1058. mc_error.id_x10 = (s16)(motor.controller.foc.out.curr_dq.d * 10.0f);
  1059. mc_error.iq_x10 = (s16)(motor.controller.foc.out.curr_dq.q * 10.0f);
  1060. mc_error.vd_x10 = (s16)(motor.controller.foc.out.vol_dq.d * 10.0f);
  1061. mc_error.vq_x10 = (s16)(motor.controller.foc.out.vol_dq.q * 10.0f);
  1062. mc_error.torque_ref_x10 = (s16)(motor.controller.target_torque * 10.0f);
  1063. mc_error.run_mode = motor.controller.mode_running;
  1064. mc_error.rpm = (s16)motor_encoder_get_speed();
  1065. mc_error.b_sensorless = !foc_observer_is_encoder();
  1066. mc_error.b_sensorless_stable = foc_observer_sensorless_stable();
  1067. mc_error.mos_temp = get_mos_temp_raw();
  1068. mc_error.mot_temp = get_motor_temp_raw();
  1069. mc_error.enc_error = motor_encoder_may_error();
  1070. mc_error.sensorless_rpm = (s16)foc_observer_sensorless_speed();
  1071. mc_err_runtime_add(&mc_error);
  1072. }
  1073. void MC_Protect_IRQHandler(void){
  1074. pwm_brake_enable(false);
  1075. shark_timer_post(&_brake_prot_timer, 1000);
  1076. if (!motor.b_start) {
  1077. return;
  1078. }
  1079. mc_set_critical_error(FOC_CRIT_Phase_Err);
  1080. mc_save_err_runtime();
  1081. mc_internal_init(CTRL_MODE_OPEN, false);
  1082. adc_stop_convert();
  1083. pwm_stop();
  1084. mot_contrl_stop(&motor.controller);
  1085. pwm_up_enable(true);
  1086. }
  1087. void motor_debug(void) {
  1088. if (!mc_unsafe_critical_error()) {
  1089. return;
  1090. }
  1091. sys_debug("err1: %f, %f, %f, %d\n", (float)mc_error.vbus_x10/10.0f, (float)mc_error.id_ref_x10/10.0f, (float)mc_error.iq_ref_x10/10.0f, mc_error.run_mode);
  1092. sys_debug("err2: %f, %f, %f, %f\n", (float)mc_error.id_x10/10.0f, (float)mc_error.iq_x10/10.0f, (float)mc_error.vd_x10/10.0f, (float)mc_error.vq_x10/10.0f);
  1093. sys_debug("err3: %f, %d, %d, %d, %d\n", (float)mc_error.ibus_x10/10.0f, mc_error.sensorless_rpm, mc_error.mos_temp, mc_error.mot_temp, mc_error.enc_error);
  1094. }
  1095. static void motor_vbus_crit_check(s16 curr_vbus) {
  1096. if (curr_vbus <= motor.s_vbus_hw_min) {
  1097. motor.vbus_le_cnt ++;
  1098. if (motor.vbus_le_cnt >= 2) {
  1099. if (mot_contrl_is_start(&motor.controller)) {
  1100. pwm_disable_channel();
  1101. mc_save_err_runtime();
  1102. mot_contrl_stop(&motor.controller);
  1103. }
  1104. if (mc_set_critical_error(FOC_CRIT_Vol_HW_Err)) {
  1105. if (mot_contrl_get_speed(&motor.controller) > CONFIG_ZERO_SPEED_RPM) {
  1106. mc_crit_err_add_s16(FOC_CRIT_Vol_HW_Err, curr_vbus);
  1107. }
  1108. }
  1109. }
  1110. }else {
  1111. motor.vbus_le_cnt = 0;
  1112. }
  1113. if (curr_vbus >= motor.s_vbus_hw_max) {
  1114. motor.vbus_he_cnt ++;
  1115. if (motor.vbus_he_cnt >= 1) {
  1116. if (mot_contrl_is_start(&motor.controller)) {
  1117. pwm_disable_channel();
  1118. mc_save_err_runtime();
  1119. mot_contrl_stop(&motor.controller);
  1120. }
  1121. if (mc_set_critical_error(FOC_CRIT_OV_Vol_Err)) {
  1122. mc_crit_err_add_s16(FOC_CRIT_OV_Vol_Err, curr_vbus);
  1123. }
  1124. }
  1125. }else {
  1126. motor.vbus_he_cnt = 0;
  1127. }
  1128. }
  1129. void TIMER_UP_IRQHandler(void){
  1130. if (!motor.b_start && !mot_contrl_is_start(&motor.controller)) {
  1131. motor_encoder_update(false);
  1132. motor_vbus_crit_check((s16)get_vbus_int());
  1133. }
  1134. }
  1135. measure_time_t g_meas_foc = {.exec_max_time = 25, .intval_max_time = 62, .intval_low_err = 0, .intval_hi_err = 0, .first = true,};
  1136. #define TIME_MEATURE_START() time_measure_start(&g_meas_foc)
  1137. #define TIME_MEATURE_END() time_measure_end(&g_meas_foc)
  1138. #if (CONFIG_ENABLE_IAB_REC==1)
  1139. #define CONFIG_IAB_REC_COUNT 1000
  1140. static s16 ia[CONFIG_IAB_REC_COUNT], ib[CONFIG_IAB_REC_COUNT];
  1141. static int iab_w_count = 0, iab_r_count = 0;
  1142. static bool b_iab_rec = false;
  1143. extern void can_plot2(s16 v1, s16 v2);
  1144. #endif
  1145. /*ADC 电流采集中断,调用FOC的核心处理函数*/
  1146. void ADC_IRQHandler(void) {
  1147. if (phase_current_offset()) {//check if is adc offset checked
  1148. return;
  1149. }
  1150. if (phase_current_sensor_do_calibrate()){
  1151. pwm_update_duty(100, FOC_PWM_Half_Period-100, 100);
  1152. pwm_update_sample(FOC_PWM_Half_Period-1, FOC_PWM_Half_Period+1, PHASE_BC);
  1153. return;
  1154. }
  1155. TIME_MEATURE_START();
  1156. #if (CONFIG_ENABLE_IAB_REC==1)
  1157. if (b_iab_rec && (iab_w_count < CONFIG_IAB_REC_COUNT)) {
  1158. ia[iab_w_count] = (s16)motor.controller.foc.in.curr_abc[0];
  1159. ib[iab_w_count] = (s16)motor.controller.foc.in.curr_abc[1];
  1160. iab_w_count ++;
  1161. }
  1162. #endif
  1163. motor_vbus_crit_check((s16)sample_vbus_raw()); //need fast detect vbus very low, to stop the motor
  1164. float vd, vq;
  1165. if (motor.b_ind_start) {
  1166. mot_params_high_freq_inject();
  1167. vd = motor.controller.foc.out.vol_dq.d;
  1168. vq = motor.controller.foc.out.vol_dq.q;
  1169. }
  1170. if (!mot_contrl_update(&motor.controller)) {/* FOC 角度错误,立即停机 */
  1171. if (mot_contrl_is_start(&motor.controller)) {
  1172. pwm_disable_channel();
  1173. /* 记录错误 */
  1174. if (!foc_observer_is_force_sensorless()) {
  1175. mc_save_err_runtime();
  1176. }
  1177. mot_contrl_stop(&motor.controller);
  1178. g_meas_foc.first = true;
  1179. if (!foc_observer_is_force_sensorless()) {
  1180. if (mc_set_critical_error(FOC_CRIT_Angle_Err)) {
  1181. mc_crit_err_add_s16(FOC_CRIT_Angle_Err, (s16)motor_encoder_get_speed());
  1182. }
  1183. if (motor_encoder_may_error() == ENCODER_PWM_ERR) {
  1184. if (mc_set_critical_error(FOC_CRIT_Encoder_Err)) {
  1185. mc_crit_err_add(FOC_CRIT_Encoder_Err, (s16)enc_pwm_err_ms, enc_delta_err2);
  1186. }
  1187. }else if (motor_encoder_may_error() == ENCODER_AB_ERR) {
  1188. if (mc_set_critical_error(FOC_CRIT_ENC_AB_Err)) {
  1189. mc_crit_err_add(FOC_CRIT_ENC_AB_Err, enc_delta_err1, enc_delta_err2);
  1190. }
  1191. }
  1192. }
  1193. }
  1194. }
  1195. if (motor.b_ind_start) {
  1196. float id = motor.controller.foc.out.curr_dq.d;
  1197. float iq = motor.controller.foc.out.curr_dq.q;
  1198. mot_params_hj_sample_vi(vd, vq, id, iq);
  1199. }
  1200. TIME_MEATURE_END();
  1201. }
  1202. #if (CONFIG_ENABLE_IAB_REC==1)
  1203. static void _iab_plot_timer_handler(shark_timer_t *t) {
  1204. if (!b_iab_rec) {
  1205. return;
  1206. }
  1207. if (iab_r_count < iab_w_count) {
  1208. can_plot2(ia[iab_r_count], ib[iab_r_count]);
  1209. iab_r_count ++;
  1210. shark_timer_post(t, 10);
  1211. }
  1212. }
  1213. static shark_timer_t _iab_plot_timer = TIMER_INIT(_iab_plot_timer, _iab_plot_timer_handler);
  1214. void mc_start_current_rec(bool rec) {
  1215. if (b_iab_rec == rec) {
  1216. return;
  1217. }
  1218. if (!rec) {
  1219. b_iab_rec = false;
  1220. shark_timer_cancel(&_iab_plot_timer);
  1221. return;
  1222. }
  1223. iab_w_count = 0;
  1224. iab_r_count = 0;
  1225. b_iab_rec = true;
  1226. shark_timer_post(&_iab_plot_timer, 100);
  1227. }
  1228. #endif
  1229. static bool mc_run_stall_process(u8 run_mode) {
  1230. if ((run_mode == CTRL_MODE_TRQ || run_mode == CTRL_MODE_SPD) && !mot_contrl_is_auto_holdding(&motor.controller)) {
  1231. //堵转判断
  1232. if (motor.b_runStall) {
  1233. if (!mc_throttle_released()) {
  1234. return true;
  1235. }
  1236. motor.runStall_time = 0;
  1237. motor.b_runStall = false; //转把释放,清除堵转标志
  1238. }else if (mot_contrl_get_current_vector(&motor.controller) >= CONFIG_STALL_MAX_CURRENT){
  1239. if (ABS(mot_contrl_get_speed(&motor.controller)) < 1.0f && (motor.runStall_time == 0)) {
  1240. motor.runStall_time = get_tick_ms();
  1241. motor.runStall_pos = motor_encoder_get_position();
  1242. }
  1243. if (motor.runStall_time > 0) {
  1244. if (get_delta_ms(motor.runStall_time) >= CONFIG_STALL_MAX_TIME) {
  1245. motor.b_runStall = true;
  1246. motor.runStall_time = 0;
  1247. mot_contrl_set_torque(&motor.controller, 0);
  1248. throttle_torque_reset();
  1249. return true;
  1250. }
  1251. if (ABS(motor.runStall_pos - motor_encoder_get_position()) >= 0.2f) {
  1252. motor.runStall_time = 0;
  1253. }
  1254. }
  1255. }else {
  1256. motor.runStall_time = 0;
  1257. }
  1258. }
  1259. return false;
  1260. }
  1261. static void mc_autohold_process(void) __attribute__((unused));
  1262. static void mc_autohold_process(void) {
  1263. if (!mc_conf()->s.auto_hold) {
  1264. if (mot_contrl_is_auto_holdding(&motor.controller)) {
  1265. mc_auto_hold(false);
  1266. }
  1267. return;
  1268. }
  1269. if (mot_contrl_is_auto_holdding(&motor.controller)) {
  1270. if (!mc_throttle_released()) {
  1271. mc_auto_hold(false);
  1272. motor.b_wait_brk_release = false;
  1273. }else if (!motor.b_break && motor.b_wait_brk_release) {
  1274. motor.b_wait_brk_release = false;
  1275. }else if (motor.b_break && !motor.b_wait_brk_release) {
  1276. mc_auto_hold(false);
  1277. }
  1278. }
  1279. if (!mot_contrl_is_auto_holdding(&motor.controller) && motor.b_break && (motor_encoder_get_speed() == 0)) {
  1280. if (motor.n_autohold_time == 0) {
  1281. motor.n_autohold_time = get_tick_ms();
  1282. }else {
  1283. if (get_delta_ms(motor.n_autohold_time) >= CONFIG_AUTOHOLD_DETECT_TIME) {
  1284. if (mc_auto_hold(true)) {
  1285. motor.b_wait_brk_release = true;
  1286. }
  1287. }
  1288. }
  1289. }else {
  1290. motor.n_autohold_time = 0;
  1291. }
  1292. }
  1293. static void mc_process_throttle_epm(void) __attribute__((unused));
  1294. static void mc_process_throttle_epm(void) {
  1295. if (!motor.b_epm_cmd_move) {//通过命令前进后退,不处理转把
  1296. if (mc_throttle_released()) {
  1297. mc_throttle_epm_move(EPM_Dir_None);
  1298. }else {
  1299. mc_throttle_epm_move(EPM_Dir_Forward);
  1300. }
  1301. }
  1302. }
  1303. static void mc_process_epm_move(void) __attribute__((unused));
  1304. static void mc_process_epm_move(void) {
  1305. if (!motor.b_epm || (motor.epm_dir == EPM_Dir_None)){
  1306. return;
  1307. }
  1308. float target_vel = mc_conf()->c.max_epm_rpm;
  1309. float target_trq = mc_conf()->c.max_epm_torque;
  1310. if (motor.epm_dir == EPM_Dir_Back) {
  1311. target_vel = -mc_conf()->c.max_epm_back_rpm;
  1312. target_trq = mc_conf()->c.max_epm_back_torque;
  1313. }else if (!motor.b_epm_cmd_move) {
  1314. target_vel = throttle_vol_to_opening(throttle_get_signal()) * 2.0f * (float)target_vel;
  1315. }
  1316. motor.f_epm_trq = target_trq;
  1317. motor.f_epm_vel = target_vel;
  1318. mot_contrl_set_torque_limit(&motor.controller, motor.f_epm_trq);
  1319. mot_contrl_set_target_vel(&motor.controller, motor.f_epm_vel);
  1320. }
  1321. static bool mc_process_force_running(void) {
  1322. if (motor.b_calibrate || (motor.mode == CTRL_MODE_OPEN)) {
  1323. if (motor.b_force_run && _force_wait <= 2000) {
  1324. if (_force_wait > 0) {
  1325. --_force_wait;
  1326. }else {
  1327. _force_angle += 1.5f;
  1328. rand_angle(_force_angle);
  1329. mot_contrl_set_angle(&motor.controller, _force_angle);
  1330. }
  1331. }
  1332. return true;
  1333. }
  1334. return false;
  1335. }
  1336. static void mc_process_brake_light(void) {
  1337. bool can_lighting = false;
  1338. if (motor.b_break || motor.b_auto_hold || mot_contrl_ebrk_is_running(&motor.controller) || ((!mc_critical_can_not_run()) && motor_encoder_get_speed() > 2000)) {
  1339. can_lighting = true;
  1340. }
  1341. gpio_brk_light_enable(can_lighting);
  1342. }
  1343. #ifdef CONFIG_CRUISE_ENABLE_ACCL
  1344. static void mc_process_curise(void) {
  1345. static bool can_pause_resume = false;
  1346. if (motor.b_cruise) {
  1347. if (mot_contrl_get_speed(&motor.controller) < CONFIG_CRUISE_EXIT_RPM) {
  1348. mot_contrl_set_cruise(&motor.controller, false);
  1349. return;
  1350. }
  1351. /* 定速巡航模式下,必须转把归位后才能开始通过拧动转把加速 */
  1352. if (mc_throttle_released() && !can_pause_resume) {
  1353. can_pause_resume = true;
  1354. }
  1355. if (!can_pause_resume) {
  1356. return;
  1357. }
  1358. if (mot_contrl_is_cruise_enabled(&motor.controller)) {
  1359. u32 cruise_time = shark_get_seconds() - motor.cruise_time;
  1360. if ((cruise_time >= 3) && motor.cruise_torque == 0.0f) {
  1361. motor.cruise_torque = motor.controller.target_torque;
  1362. }else if ((cruise_time >= 3) && (motor.cruise_torque > 0.0f)){
  1363. float trq_req = get_user_request_torque();
  1364. if (trq_req > motor.cruise_torque * 1.2f) {
  1365. mot_contrl_pause_cruise(&motor.controller); //需要加速,暂停定速巡航
  1366. }
  1367. }
  1368. }else {
  1369. float trq_req = get_user_request_torque();
  1370. if (trq_req <= motor.cruise_torque * 1.1f) {
  1371. mot_contrl_resume_cruise(&motor.controller); //重新开始定速巡航,巡航速度还是前一次定速巡航给的速度
  1372. }
  1373. }
  1374. }else {
  1375. mot_contrl_set_cruise(&motor.controller, false);
  1376. can_pause_resume = false;
  1377. }
  1378. }
  1379. #endif
  1380. static bool mc_can_stop_foc(void) {
  1381. if (mc_critical_need_stop()) {
  1382. return true;
  1383. }
  1384. if (motor.mode == CTRL_MODE_CURRENT) {
  1385. return false;
  1386. }
  1387. if (!motor.b_cruise && !motor.b_epm && motor.mode == CTRL_MODE_SPD) {
  1388. if (motor.s_target_speed != MAX_S16 && motor.s_target_speed != 0) {
  1389. return false;
  1390. }else {
  1391. return true;
  1392. }
  1393. }
  1394. if (mc_throttle_released() && ((mot_contrl_get_speed(&motor.controller)) == 0.0f)) {
  1395. if (!mot_contrl_is_auto_holdding(&motor.controller) && motor.epm_dir == EPM_Dir_None) {
  1396. return true;
  1397. }
  1398. }
  1399. /* 启用无感观测器,但是观测器未稳定,关闭输出,滑行 */
  1400. if (!foc_observer_is_encoder() && !foc_observer_sensorless_stable()) {
  1401. return true;
  1402. }
  1403. return false;
  1404. }
  1405. static bool mc_can_restart_foc(void) {
  1406. if (mc_critical_can_not_run()) {
  1407. return false;
  1408. }
  1409. bool can_start = (!mc_throttle_released() || (motor.epm_dir != EPM_Dir_None));
  1410. if (!foc_observer_is_encoder() && !foc_observer_sensorless_stable()){
  1411. return false;
  1412. }
  1413. if ((motor.s_target_speed != MAX_S16 && motor.s_target_speed != 0) && motor.mode == CTRL_MODE_SPD) {
  1414. return true;
  1415. }
  1416. return can_start;
  1417. }
  1418. static void mc_motor_runstop(void) __attribute__((unused));
  1419. static void mc_motor_runstop(void) {
  1420. u32 mask;
  1421. if (mot_contrl_is_start(&motor.controller) && mc_can_stop_foc()) {
  1422. mask = cpu_enter_critical();
  1423. mot_contrl_stop(&motor.controller);
  1424. pwm_disable_channel();
  1425. g_meas_foc.first = true;
  1426. motor.foc_stop_cnt ++;
  1427. cpu_exit_critical(mask);
  1428. }
  1429. if (!mot_contrl_is_start(&motor.controller) && mc_can_restart_foc()) {
  1430. mask = cpu_enter_critical();
  1431. mot_contrl_start(&motor.controller, motor.mode);
  1432. mc_gear_mode_set();
  1433. throttle_torque_reset();
  1434. pwm_enable_channel();
  1435. g_meas_foc.first = true;
  1436. motor.foc_start_cnt ++;
  1437. cpu_exit_critical(mask);
  1438. }
  1439. }
  1440. static void mc_process_throttle_torque(float vol) __attribute__((unused));
  1441. static void mc_process_throttle_torque(float vol) {
  1442. float torque = throttle_get_torque(&motor.controller, vol);
  1443. if (mc_throttle_released()) {
  1444. #ifdef CONFIG_CRUISE_ENABLE_ACCL
  1445. if (mc_is_cruise_enabled()) {
  1446. return;
  1447. }
  1448. #endif
  1449. if (!mot_contrl_ebrk_is_running(&motor.controller) && mot_contrl_set_ebreak(&motor.controller, true)) {
  1450. return;
  1451. }
  1452. }
  1453. if (motor.controller.mode_running == CTRL_MODE_TRQ) {
  1454. throttle_set_torque(&motor.controller, torque);
  1455. }else if (motor.controller.mode_running == CTRL_MODE_SPD) {
  1456. if (!mc_is_cruise_enabled()) {
  1457. float vel_ref = motor.controller.userlim.mot_vel * throttle_get_open_ration_filted();
  1458. mot_contrl_set_target_vel(&motor.controller, vel_ref);
  1459. }
  1460. }else if (motor.controller.mode_running == CTRL_MODE_EBRAKE){
  1461. /* 等待输入扭矩先减小到0 */
  1462. if (line_ramp_get_interp(&motor.controller.ramp_input_torque) >= 0.001f) {
  1463. return;
  1464. }
  1465. mot_contrl_set_ebrk_time(&motor.controller, motor.controller.ebrk_ramp_time);
  1466. float vel = mot_contrl_get_speed(&motor.controller);
  1467. float ebrk_trq = motor_get_ebreak_toruqe(vel);
  1468. mot_contrl_set_torque(&motor.controller, ebrk_trq);
  1469. if ((vel < CONFIG_MIN_RPM_EXIT_EBRAKE) || (!mc_throttle_released() || (mc_throttle_released() && (vel == 0.0f)))) {
  1470. mot_contrl_set_ebreak(&motor.controller, false);
  1471. throttle_torque_reset();
  1472. }
  1473. }
  1474. }
  1475. /*FOC 的部分处理,比如速度环,状态机,转把采集等*/
  1476. measure_time_t g_meas_MCTask = {.exec_max_time = 100, .intval_max_time = 1000, .intval_low_err = 0, .intval_hi_err = 0, .first = true,};
  1477. #define mc_TaskStart time_measure_start(&g_meas_MCTask)
  1478. #define mc_TaskEnd time_measure_end(&g_meas_MCTask)
  1479. void Sched_MC_mTask(void) {
  1480. static int vbus_err_cnt = 0;
  1481. static bool _sensorless_run = false;
  1482. mc_TaskStart;
  1483. adc_vref_filter();
  1484. throttle_detect(motor.b_start);
  1485. F_all_Calc();
  1486. #ifdef CONFIG_CRUISE_ENABLE_ACCL
  1487. mc_process_curise();
  1488. #endif
  1489. u8 runMode = mot_contrl_mode(&motor.controller);
  1490. /*保护功能*/
  1491. u8 limted = mot_contrl_protect(&motor.controller);
  1492. /* 母线电流,实际采集的相电流矢量大小的计算 */
  1493. mot_contrl_calc_current(&motor.controller);
  1494. if ((mot_contrl_get_dc_current(&motor.controller) > (CONFIG_HW_MAX_DC_CURRENT * 1.1f)) || (mot_contrl_get_dc_current(&motor.controller) < CONFIG_HW_MAX_CHRG_CURRENT)) {
  1495. vbus_err_cnt ++;
  1496. if (vbus_err_cnt >= 5) {
  1497. if (mc_set_critical_error(FOC_CRIT_IDC_OV)) {
  1498. mc_crit_err_add(FOC_CRIT_IDC_OV, (s16)sample_vbus_raw(), (s16)sample_ibus_raw());
  1499. mc_save_err_runtime();
  1500. }
  1501. }
  1502. }else {
  1503. vbus_err_cnt = 0;
  1504. }
  1505. if (mc_process_force_running()) {
  1506. mc_TaskEnd;
  1507. return;
  1508. }
  1509. bool sensor_less = !foc_observer_is_encoder();
  1510. if (mc_detect_vbus_mode() || (limted == FOC_LIM_CHANGE_L) || (_sensorless_run != sensor_less)) {
  1511. mc_gear_mode_set();
  1512. if (sensor_less && foc_observer_sensorless_stable()) {//unstable 记录在ADC中断处理中
  1513. if (motor_encoder_may_error() == ENCODER_PWM_ERR) {
  1514. if (mc_set_critical_error(FOC_CRIT_Encoder_Err)) {
  1515. mc_crit_err_add(FOC_CRIT_Encoder_Err, (s16)enc_pwm_err_ms, enc_delta_err2);
  1516. }
  1517. }else if (motor_encoder_may_error() == ENCODER_AB_ERR) {
  1518. if (mc_set_critical_error(FOC_CRIT_ENC_AB_Err)) {
  1519. mc_crit_err_add(FOC_CRIT_ENC_AB_Err, enc_delta_err1, enc_delta_err2);
  1520. }
  1521. }
  1522. }
  1523. motor.b_limit_pending = false;
  1524. }else if (limted == FOC_LIM_CHANGE_H) {
  1525. motor.b_limit_pending = true;
  1526. }
  1527. _sensorless_run = sensor_less;
  1528. /* 如果取消高温,欠压等限流需要释放转把后才生效,确保不会突然加速 */
  1529. if (motor.b_limit_pending && mc_throttle_released()) {
  1530. motor.b_limit_pending = false;
  1531. mc_gear_mode_set();
  1532. }
  1533. /* 堵转处理 */
  1534. if (mc_run_stall_process(runMode) || (motor.mode == CTRL_MODE_CURRENT)) {
  1535. #ifndef CONFIG_DQ_STEP_RESPONSE
  1536. mot_contrl_slow_task(&motor.controller);
  1537. mc_motor_runstop();
  1538. #endif
  1539. if (motor.b_ind_start) {
  1540. mot_params_flux_stop();
  1541. }
  1542. mc_TaskEnd;
  1543. return;
  1544. }
  1545. mc_process_brake_light();
  1546. if ((runMode != CTRL_MODE_OPEN) || (motor.mode != CTRL_MODE_OPEN)) {
  1547. #ifndef CONFIG_DQ_STEP_RESPONSE
  1548. mc_autohold_process();
  1549. mc_turbo_auto_exit();
  1550. if (motor.mode != CTRL_MODE_OPEN) {
  1551. mc_motor_runstop();
  1552. }
  1553. if (runMode != CTRL_MODE_OPEN) {
  1554. if (runMode == CTRL_MODE_SPD) {
  1555. if (mc_is_epm()) {
  1556. mc_process_throttle_epm();
  1557. mc_process_epm_move();
  1558. }else if (motor.s_target_speed != MAX_S16) {
  1559. mot_contrl_set_target_vel(&motor.controller, motor.s_target_speed);
  1560. }
  1561. }else {
  1562. if (motor.s_force_torque != MAX_S16) {
  1563. mot_contrl_set_force_torque(&motor.controller, motor.s_force_torque);
  1564. }else {
  1565. float thro = throttle_get_signal();
  1566. if (motor.b_ignor_throttle) {
  1567. float r = (float)motor.u_throttle_ration/100.0f;
  1568. thro = throttle_opening_to_vol(r);
  1569. }
  1570. mc_process_throttle_torque(thro);
  1571. }
  1572. }
  1573. mot_contrl_slow_task(&motor.controller);
  1574. }
  1575. #endif
  1576. }
  1577. mc_TaskEnd;
  1578. }