Skip to content

Commit

Permalink
Removing the RST pin and releasing the MicroSD.
Browse files Browse the repository at this point in the history
I discovered a way to make the Si4713 (FM Transmitter) work without the RST pin plugged into the Cardputer and StcikC. It is necessary to take the cable connected to the RST pin of the FM Transmitter and quickly touch it to the GND pin, changing the state of the pin and activating the board. In the future it is possible to add some hardware to do this work.


Removing the RST pin from the code also allows the use of the MicroSD Card from the SD Card Sniffer or Cardputer, improving usability.
  • Loading branch information
IncursioHack authored Sep 1, 2024
1 parent 2f50c9f commit 0c67660
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/fm/fm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
bool auto_scan = false;
bool is_running = false;
uint16_t fm_station = 10230; // Default set to 102.30 MHz
Adafruit_Si4713 radio = Adafruit_Si4713(FM_RSTPIN);
Adafruit_Si4713 radio = Adafruit_Si4713();

void set_auto_scan(bool new_value) {
auto_scan = new_value;
Expand Down

0 comments on commit 0c67660

Please sign in to comment.