Skip to content

Commit e8ee66b

Browse files
committed
[bugFix] Fix a stupid bug 😈
1 parent bb86d19 commit e8ee66b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=RT-Thread
2-
version=0.4.0
2+
version=0.4.1
33
author=Bernard Xiong <[email protected]>, onelife <[email protected]>
44
maintainer=onelife <[email protected]>
55
sentence=Real Time Operating System porting for Arduino SAM and SAMD boards

src/libcpu/arm/context_gcc.S

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @author onelife <onelife.real[at]gmail.com>
55
******************************************************************************/
66
#if defined(ARDUINO_ARCH_SAMD)
7-
#include "cortex-m3/context_gcc.h"
8-
#elif defined(ARDUINO_ARCH_SAM)
97
#include "cortex-m0/context_gcc.h"
8+
#elif defined(ARDUINO_ARCH_SAM)
9+
#include "cortex-m3/context_gcc.h"
1010
#endif

0 commit comments

Comments
 (0)