Skip to content
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.

Commit

Permalink
Update Packages_Patches
Browse files Browse the repository at this point in the history
### Releases v1.8.14-1

1. Fix examples to support ATmega4809 such as UNO_WIFI_REV2 and NANO_EVERY
2. Add support to generic `__SAMD21E1xA__`, `__SAMD21G1xA__` and `__SAMD21J1xA__`
3. Add `headers` in `library.json` for PIO
4. Update `platform.io`
5. Remove debug leftovers. Check [Debug text comes out of the serial port when listening for UDP connections #15](#15)
  • Loading branch information
khoih-prog authored Nov 26, 2021
1 parent 2530160 commit e486338
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1080,6 +1080,22 @@ void printWiFiStatus()

#endif

#if ( defined(__AVR_ATmega4809__) || defined(ARDUINO_AVR_UNO_WIFI_REV2) || defined(ARDUINO_AVR_NANO_EVERY) )
#if !defined(BOARD_NAME)
#if (ARDUINO_AVR_UNO_WIFI_REV2)
#define BOARD_NAME "megaAVR UNO WiFi Rev2"
#elif (ARDUINO_AVR_NANO_EVERY)
#define BOARD_NAME "megaAVR Nano Every"
#else
#define BOARD_NAME "megaAVR Unknown"
#endif
#endif
#endif

#ifndef BOARD_TYPE
#define BOARD_TYPE "Unknown board"
#endif

#ifndef BOARD_NAME
#define BOARD_NAME BOARD_TYPE
#endif
Expand Down

0 comments on commit e486338

Please sign in to comment.