Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 34f48ca

Browse filesBrowse files
authored
Merge pull request #351 from ianfixes/2023-06-07_nano_every
Fix flags for nano every
2 parents 439d668 + 27ae4b1 commit 34f48ca
Copy full SHA for 34f48ca

File tree

3 files changed

+4
-2
lines changed
Filter options

3 files changed

+4
-2
lines changed

‎CHANGELOG.md

Copy file name to clipboardExpand all lines: CHANGELOG.md
+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1515
### Removed
1616

1717
### Fixed
18+
- Compiler flags for Nano Every
1819

1920
### Security
2021

‎cpp/arduino/ArduinoDefines.h

Copy file name to clipboardExpand all lines: cpp/arduino/ArduinoDefines.h
+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
#define TIMER5B 17
9090
#define TIMER5C 18
9191

92-
#if defined(__AVR_ATmega328P__) || defined(__AVR_ATmega32U4__) || defined(__AVR_ATmega328__) || defined(__AVR_ATmega168__) || defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) || defined(__SAM3X8E__) || defined(__SAMD21G18A__)
92+
#if defined(__AVR_ATmega328P__) || defined(__AVR_ATmega32U4__) || defined(__AVR_ATmega328__) || defined(__AVR_ATmega168__) || defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) || defined(__AVR_ATmega4809__) || defined(__SAM3X8E__) || defined(__SAMD21G18A__)
9393
// Verified on these platforms, see https://github.com/Arduino-CI/arduino_ci/pull/341#issuecomment-1368118880
9494
#define LED_BUILTIN 13
9595

‎misc/default.yml

Copy file name to clipboardExpand all lines: misc/default.yml
+2-1
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,10 @@ platforms:
6565
gcc:
6666
features:
6767
defines:
68+
- __AVR_ATmega4809__
69+
- AVR_NANO_4809_328MODE
6870
- MILLIS_USE_TIMERB3
6971
- NO_EXTERNAL_I2C_PULLUP
70-
- AVR_NANO_4809_328MODE
7172
warnings:
7273
flags:
7374
esp32:

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.