mirror of
https://github.com/EranMorkon/AMTS.git
synced 2023-12-28 16:48:38 +00:00
Software
This commit is contained in:
parent
4093cd295f
commit
dc99dcf6e8
41 changed files with 1775 additions and 19 deletions
30
Mieke/SW/MT/main.h
Normal file
30
Mieke/SW/MT/main.h
Normal file
|
@ -0,0 +1,30 @@
|
|||
#ifndef MAIN_H
|
||||
#define MAIN_H
|
||||
|
||||
#define VERSION "0.1.0"
|
||||
|
||||
enum iface_t {
|
||||
interface_none = 0,
|
||||
interface_usart1,
|
||||
interface_usart2,
|
||||
interface_usart3
|
||||
};
|
||||
|
||||
enum test_t {
|
||||
test_not_init = 0,
|
||||
test_none = 1,
|
||||
test_bma,
|
||||
test_ne555,
|
||||
test_led,
|
||||
test_esp,
|
||||
test_eeprom,
|
||||
test_rgb,
|
||||
test_piezo,
|
||||
test_display
|
||||
};
|
||||
|
||||
void SysTick_Handler(void);
|
||||
void USART2_IRQHandler(void);
|
||||
void wait(uint32_t ms);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue