同时安装keil和cubeide后cubeide编译出来的玩意一直无法运行。被迫用keil开发

Signed-off-by: kevin <kevin@lmve.net>
This commit is contained in:
2022-04-15 14:22:39 +08:00
parent 3347044f7f
commit 61a0c870de
232 changed files with 104290 additions and 1921 deletions
+22
View File
@@ -0,0 +1,22 @@
/*
* oled.h
*
* Created on: 2022年4月15日
* Author: wuwen
*/
#ifndef OLED_H_
#define OLED_H_
#include "main.h"
#include "hread_interface.h"
#define OLED_ADDRESS 0x78
#define PI 3.141592654
#define X_WIDTH 128
#define Y_WIDTH 64
#define Y_WIDTH_ 8
void OLED_Init(void);
void OLED_ShowStr(unsigned char x,unsigned char y,char *str);
#endif /* OLED_H_ */