修复QAC宏定义问题
This commit is contained in:
parent
32a960be04
commit
11fee45f9e
20
.vscode/settings.json
vendored
Normal file
20
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"MicroPython.executeButton": [
|
||||||
|
{
|
||||||
|
"text": "▶",
|
||||||
|
"tooltip": "运行",
|
||||||
|
"alignment": "left",
|
||||||
|
"command": "extension.executeFile",
|
||||||
|
"priority": 3.5
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"MicroPython.syncButton": [
|
||||||
|
{
|
||||||
|
"text": "$(sync)",
|
||||||
|
"tooltip": "同步",
|
||||||
|
"alignment": "left",
|
||||||
|
"command": "extension.execute",
|
||||||
|
"priority": 4
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -3,7 +3,9 @@
|
|||||||
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
|
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
|
||||||
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
|
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
|
||||||
<group>
|
<group>
|
||||||
<file>file:/F:/FCB_project/P417/CODE/20240727HW06/P417_SWTR/firmware/src/TouchPanel/TouchPanel.c</file>
|
<file>file:/F:/FCB_project/P417/CODE/20240727HW06/P417_SWTR/firmware/src/RTE/RTE.c</file>
|
||||||
|
<file>file:/F:/FCB_project/P417/CODE/20240727HW06/P417_SWTR/firmware/src/RTE/RTE.h</file>
|
||||||
|
<file>file:/F:/FCB_project/P417/CODE/20240727HW06/P417_SWTR/firmware/src/P417_SWTR_App_ert_rtw/rtwtypes.h</file>
|
||||||
<file>file:/F:/FCB_project/P417/CODE/20240727HW06/P417_SWTR/firmware/src/main.c</file>
|
<file>file:/F:/FCB_project/P417/CODE/20240727HW06/P417_SWTR/firmware/src/main.c</file>
|
||||||
</group>
|
</group>
|
||||||
</open-files>
|
</open-files>
|
||||||
|
@ -49,7 +49,7 @@ typedef unsigned char uint8_T;
|
|||||||
typedef short int16_T;
|
typedef short int16_T;
|
||||||
typedef unsigned short uint16_T;
|
typedef unsigned short uint16_T;
|
||||||
typedef int int32_T;
|
typedef int int32_T;
|
||||||
typedef unsigned int uint32_T;
|
typedef long unsigned int uint32_T;
|
||||||
typedef float real32_T;
|
typedef float real32_T;
|
||||||
typedef double real64_T;
|
typedef double real64_T;
|
||||||
|
|
||||||
|
@ -37,17 +37,7 @@
|
|||||||
#include "SysDiagDetect.h"
|
#include "SysDiagDetect.h"
|
||||||
|
|
||||||
// #include "Global.h"
|
// #include "Global.h"
|
||||||
#ifndef uint8_t
|
|
||||||
#define uint8_t unsigned char
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef uint16_t
|
|
||||||
#define uint16_t unsigned short
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef uint32_t
|
|
||||||
#define uint32_t unsigned int
|
|
||||||
#endif
|
|
||||||
extern uint8 CurrentPosition;
|
extern uint8 CurrentPosition;
|
||||||
|
|
||||||
uint16 Fr08_send_flag;
|
uint16 Fr08_send_flag;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user