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

Commit

Permalink
v1.4.2 to fix bugs
Browse files Browse the repository at this point in the history
### Releases v1.4.2

1. Fix bug in UDP length check and in WiFi example. Check [UDP Length check discards correct responses when resolving names - On Nano RP2040 Connect #13](#13)
2. Fix bug in example [WiFiDiscoveringServices](https://github.com/khoih-prog/MDNS_Generic/tree/master/examples/WiFi/WiFiDiscoveringServices)
3. Update `Packages' Patches`
  • Loading branch information
khoih-prog authored Oct 13, 2022
1 parent 24d88d4 commit deaf72b
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -482,16 +482,16 @@ This file must be copied into the directory:

#### 10. For RTL8720DN boards using AmebaD core

To avoid compile error relating to PROGMEM, you have to copy the file [Realtek AmebaD core pgmspace.h](Packages_Patches/realtek/hardware/AmebaD/3.1.4/cores/arduino/avr/pgmspace.h) into Realtek AmebaD directory (~/.arduino15/packages/realtek/hardware/AmebaD/3.1.4/cores/arduino/avr/pgmspace.h).
To avoid compile error relating to PROGMEM, you have to copy the file [Realtek AmebaD core pgmspace.h](Packages_Patches/realtek/hardware/AmebaD/3.1.4/cores/ambd/avr/pgmspace.h) into Realtek AmebaD directory (~/.arduino15/packages/realtek/hardware/AmebaD/3.1.4/cores/ambd/avr/pgmspace.h).

Supposing the Realtek AmebaD core version is 3.1.4. This file must be copied into the directory:

- `~/.arduino15/packages/realtek/hardware/AmebaD/3.1.4/cores/arduino/avr/pgmspace.h`
- `~/.arduino15/packages/realtek/hardware/AmebaD/3.1.4/cores/ambd/avr/pgmspace.h`

Whenever a new version is installed, remember to copy this file into the new version directory. For example, new version is x.yy.zz
This file must be copied into the directory:

- `~/.arduino15/packages/realtek/hardware/AmebaD/x.yy.zz/cores/arduino/avr/pgmspace.h`
- `~/.arduino15/packages/realtek/hardware/AmebaD/x.yy.zz/cores/ambd/avr/pgmspace.h`


#### 11. For SAMD21 and SAMD51 boards using ArduinoCore-fab-sam core
Expand Down Expand Up @@ -739,12 +739,15 @@ mdns.startDiscoveringService(serviceName, MDNSServiceTCP, 5000);

#### 1. File [ResolvingHostNames.ino](examples/Ethernet/ResolvingHostNames/ResolvingHostNames.ino)

https://github.com/khoih-prog/MDNS_Generic/blob/754935e58e4a11de9fff4910e469e43511ad53eb/examples/Ethernet/ResolvingHostNames/ResolvingHostNames.ino#L24-L373

https://github.com/khoih-prog/MDNS_Generic/blob/24d88d4c6ea43e8d624b1d4183ca82d2a8beb4b3/examples/Ethernet/ResolvingHostNames/ResolvingHostNames.ino#L24-L373


#### 2. File [defines.h](examples/Ethernet/ResolvingHostNames/defines.h)

https://github.com/khoih-prog/MDNS_Generic/blob/754935e58e4a11de9fff4910e469e43511ad53eb/examples/Ethernet/ResolvingHostNames/defines.h#L23-L449

https://github.com/khoih-prog/MDNS_Generic/blob/24d88d4c6ea43e8d624b1d4183ca82d2a8beb4b3/examples/Ethernet/ResolvingHostNames/defines.h#L23-L449


---
---
Expand Down

0 comments on commit deaf72b

Please sign in to comment.