lu7did / RDX-rp2040

GNU General Public License v3.0
18 stars 2 forks source link

Connectivity, WiFi and other issues #27

Closed lu7did closed 1 year ago

lu7did commented 1 year ago

Question over e-mail by Charudatt

some differences observed in v90 firmware with debug on-board

How do I change the default frequency from 70740 to 140740 ?

lu7did commented 1 year ago

some differences observed in v90 firmware with debug on-board

* It does not show logging onto the WiFi and getting the time from NTP server as it used to show in the previous Listing

The standard source code at the repository is for the Raspberry Pico and not the Raspberry Pico W, therefore all WiFi related functions are disabled by default,you might activate the support for the Raspberry Pico W uncommenting the sentence //#define RP2040W             1  //Comment if running on a standard Raspberry Pico (non Wireless)   * EEPROM does show the WiFi Credentials though_ Yes, because of the above, they are stored but not used. 

* Setting the time zone to 0 does not show the UTC time on the display , as I feel it simply does not log onto the netwrok

Nope, because of the above NTP doesn't connect to the network, with the Raspberry Pico standard the only time available is the manual synchronization. 

* Request - Please display the I2C status of the Si5351 also like shown for the Rx chip if used. Please log in as an enhancement for future implementation.

How do I change the default frequency from 70740 to 140740 ?

You should change it while the firmware is running and it will be stored in the EEPROM for the next power up, it will be reversed when you flash code again though.For a permanent change you should change the definition to the frequency of your wish. unsigned long freq = 7074000UL;  I'll post this note as a question in GitHub in case any other had a similar problem.