armfly_bsp.c 380 B

123456789101112131415161718192021
  1. #include "armfly_bsp.h"
  2. void bsp_init(void)
  3. {
  4. uart1_mbox = OSMboxCreate(NULL);
  5. uart3_mbox = OSMboxCreate(NULL);
  6. InitQueue(&CanQueueCan1);
  7. InitQueue(&CanQueueCan2);
  8. // GPIO初始化
  9. gpio_clock_init();
  10. interface_init();
  11. uart1_init();
  12. uart3_init();
  13. enet_system_setup();
  14. lwip_stack_init();
  15. // can初始化
  16. can_network_init();
  17. }