Skip to content

Commit e340701

Browse files
authored
Merge pull request #288 from henrygab/patch-1
Cast to integral type ignores qualifier `volatile`
2 parents 243c208 + d542a60 commit e340701

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/arduino/Reset.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ extern "C" {
2929
#if (ARDUINO_SAMD_VARIANT_COMPLIANCE >= 10610)
3030

3131
extern const uint32_t __text_start__;
32-
#define APP_START ((volatile uint32_t)(&__text_start__) + 4)
32+
#define APP_START ((uint32_t)(&__text_start__) + 4)
3333

3434
#else
3535

0 commit comments

Comments
 (0)