Advertisement
teplofizik

main.c

Aug 18th, 2013
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.55 KB | None | 0 0
  1. // ***********************************************************
  2. //  STM32F4 base project
  3. //
  4. // ***********************************************************
  5.  
  6. #include "drivers.h"
  7. #include "bsp.h"
  8.  
  9. #include "main/test.h"
  10.  
  11. int main(void)
  12. {
  13.     // Инициализация периферии и драйверов
  14.     drivers_Init();
  15.     bsp_Init();
  16.    
  17.     // Пользовательское приложение test
  18.     test_Init();
  19.    
  20.     while(1)
  21.     {
  22.         drivers_Main();
  23.         bsp_Main();
  24.        
  25.         test_Main();
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement