15 lines
287 B
C
15 lines
287 B
C
|
#ifndef BSP_STM32_FREERTOS_FSFWCONFIG_DEVICES_DEVADDRESSES_H_
|
||
|
#define BSP_STM32_FREERTOS_FSFWCONFIG_DEVICES_DEVADDRESSES_H_
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace devaddress {
|
||
|
enum devaddress: uint32_t {
|
||
|
L3GD20H = 1
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif /* BSP_STM32_FREERTOS_FSFWCONFIG_DEVICES_DEVADDRESSES_H_ */
|