hal.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. #ifndef _HAL_H__
  2. #define _HAL_H__
  3. #include "stm32f3xx_hal.h"
  4. #define PWM_UH_Pin GPIO_PIN_8
  5. #define PWM_UH_GPIO_Port GPIOA
  6. #define PWM_VH_Pin GPIO_PIN_9
  7. #define PWM_VH_GPIO_Port GPIOA
  8. #define PWM_WH_Pin GPIO_PIN_10
  9. #define PWM_WH_GPIO_Port GPIOA
  10. #define PWM_EN_U_Pin GPIO_PIN_10
  11. #define PWM_EN_U_GPIO_Port GPIOC
  12. #define PWM_EN_V_Pin GPIO_PIN_11
  13. #define PWM_EN_V_GPIO_Port GPIOC
  14. #define PWM_EN_W_Pin GPIO_PIN_12
  15. #define PWM_EN_W_GPIO_Port GPIOC
  16. #define CURR_AMPL_W_Pin GPIO_PIN_0
  17. #define CURR_AMPL_W_GPIO_Port GPIOC
  18. #define CURR_AMPL_V_Pin GPIO_PIN_1
  19. #define CURR_AMPL_V_GPIO_Port GPIOC
  20. #define TEMPERATURE_Pin GPIO_PIN_2
  21. #define TEMPERATURE_GPIO_Port GPIOC
  22. #define CURR_AMPL_U_Pin GPIO_PIN_0
  23. #define CURR_AMPL_U_GPIO_Port GPIOA
  24. #define BUS_VOLTAGE_Pin GPIO_PIN_1
  25. #define BUS_VOLTAGE_GPIO_Port GPIOA
  26. #define M1_OCP_Pin GPIO_PIN_11
  27. #define M1_OCP_GPIO_Port GPIOA
  28. #define HALL_1_PIN GPIO_PIN_15
  29. #define HALL_1_GROUP GPIOA
  30. #define HALL_2_PIN GPIO_PIN_3
  31. #define HALL_2_GROUP GPIOB
  32. #define HALL_3_PIN GPIO_PIN_10
  33. #define HALL_3_GROUP GPIOB
  34. #define CURRENT_U_ADC_CHANNAL 6
  35. #define CURRENT_V_ADC_CHANNAL 7
  36. #define CURRENT_W_ADC_CHANNAL 1
  37. #define READ_HALL1() (HAL_GPIO_ReadPin(HALL_1_GROUP, HALL_1_PIN) == GPIO_PIN_SET ?1:0)
  38. #define READ_HALL2() (HAL_GPIO_ReadPin(HALL_2_GROUP, HALL_2_PIN) == GPIO_PIN_SET ?1:0)
  39. #define READ_HALL3() (HAL_GPIO_ReadPin(HALL_3_GROUP, HALL_3_PIN) == GPIO_PIN_SET ?1:0)
  40. #define TIM_CLOCK (72000000L * 2) /*SystemClock_Config中TIM1的clk从sys PLL 过来,固定2倍的PLL频率*/
  41. #define TIM_CLOCK_MHz (144)
  42. #define ADC_CLOCK (72000000L)
  43. #define ADC_CLOCK_MHz (72)
  44. #define NS_PER_TCLK (7) /* (1/144000000 * 1000000000) */
  45. #define NS_2_TCLK(ns) ((ns/NS_PER_TCLK) + 1)
  46. #define FOC_FS (20 * 1000)
  47. #define FOC_PWM_period (TIM_CLOCK/FOC_FS)
  48. #define MAX_VBUS (12.f) //12v
  49. #define ADC_TRIG_CONV_LATENCY_CYCLES 3.5f
  50. #define ADC_SAMPLING_CYCLES 7.5f
  51. #define HW_DEAD_TIME_NS 800
  52. #define HW_RISE_TIME_NS 50
  53. #define HW_NOISE_TIME_NS 50
  54. #define TDead NS_2_TCLK(HW_DEAD_TIME_NS)/* 死区时间 */
  55. #define TRise NS_2_TCLK(HW_RISE_TIME_NS)/* MOS 开关时间*/
  56. #define TNoise NS_2_TCLK(HW_NOISE_TIME_NS)/* MOS开关引入的开关噪声时间 */
  57. #define TADC ((uint16_t)((ADC_TRIG_CONV_LATENCY_CYCLES + ADC_SAMPLING_CYCLES) * TIM_CLOCK_MHz) / ADC_CLOCK_MHz + 1u)/* ADC 采样时间 */
  58. void Error_Handler(void);
  59. void SystemClock_Config(void);
  60. void HAL_GPIO_init(void);
  61. int HALL_Read(int samples);
  62. #endif /* _HAL_H__ */