You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ce/sys/timers.h
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -267,6 +267,10 @@ int usleep(useconds_t usec);
267
267
*/
268
268
voidboot_WaitShort(void);
269
269
270
+
/* @cond */
271
+
#definetimer_GetLow(n) (_Pragma("GCC warning \"'timer_GetLow' is deprecated, use 'timer_Get' or 'timer_GetSafe' instead as appropriate\"") (uint24_t)timer_Get(n))
Copy file name to clipboardExpand all lines: src/ce/tice.h
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,8 @@
6
6
* @brief Core CE define file
7
7
*/
8
8
9
-
#ifndef_TICE_H
10
-
#define_TICE_H
9
+
#ifndefTICE_H
10
+
#defineTICE_H
11
11
12
12
#include<sys/basicusb.h>
13
13
#include<sys/lcd.h>
@@ -20,14 +20,18 @@
20
20
#include<ti/flags.h>
21
21
#include<ti/getcsc.h>
22
22
#include<ti/getkey.h>
23
-
#include<ti/screen.h>
23
+
#include<ti/graph.h>
24
24
#include<ti/info.h>
25
+
#include<ti/python.h>
25
26
#include<ti/real.h>
27
+
#include<ti/screen.h>
26
28
#include<ti/tokens.h>
27
29
#include<ti/ui.h>
28
30
#include<ti/vars.h>
29
31
30
32
/* Compatibility defines */
33
+
34
+
/* @cond */
31
35
#defineprgm_CleanUp()
32
36
#definepgrm_CleanUp()
33
37
#definememset_fast memset
@@ -48,6 +52,4 @@
48
52
#defineasm_ClrTxtShd os_ClrTxtShd
49
53
/* @endcond */
50
54
51
-
#definetimer_GetLow(n) (_Pragma("GCC warning \"'timer_GetLow' is deprecated, use 'timer_Get' or 'timer_GetSafe' instead as appropriate\"") (uint24_t)timer_Get(n))
0 commit comments