12 lines
167 B
C++
12 lines
167 B
C++
#include "stm32g4xx.h"
|
|
#include "ICM20948.h"
|
|
|
|
extern "C" void SystemClock_Config();
|
|
|
|
int main()
|
|
{
|
|
SystemClock_Config(); // 170MHz
|
|
IMU_InitPower();
|
|
|
|
return 0;
|
|
} |