Skip to content

Commit e81ce50

Browse files
authored
Update and rename raduino_v1.28.ino to raduino_v1.28.1.ino
1 parent 1af11cf commit e81ce50

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

raduino_v1.28.ino renamed to raduino_v1.28.1.ino

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
Raduino_v1.28 for BITX40 - Allard Munters PE1NWL (pe1nwl@gooddx.net)
2+
Raduino_v1.28.1 for BITX40 - Allard Munters PE1NWL (pe1nwl@gooddx.net)
33
44
This source file is under General Public License version 3.
55
@@ -2308,7 +2308,7 @@ void calibrate_touch_pads() {
23082308

23092309
void setup() {
23102310
u.raduino_version = 28;
2311-
strcpy (c, "Raduino v1.28");
2311+
strcpy (c, "Raduino v1.28.1");
23122312

23132313
lcd.begin(16, 2);
23142314

@@ -2322,10 +2322,13 @@ void setup() {
23222322
pinMode(CAL_BUTTON, INPUT_PULLUP);
23232323
//configure the SPOT button to use the internal pull-up
23242324
pinMode(SPOT, INPUT_PULLUP);
2325-
2325+
//configure the PTT SENSE to use the internal pull-up
2326+
pinMode(PTT_SENSE, INPUT_PULLUP);
2327+
//configure the TX_RX to use the internal pull-up
23262328
pinMode(TX_RX, INPUT_PULLUP);
2329+
23272330
delay(100); // allow the voltages on the Arduino inputs to settle for some milliseconds after power on
2328-
2331+
23292332
if (digitalRead(TX_RX)) { // Test if TX_RX line is installed
23302333
TXRX_installed = false;
23312334
u.semiQSK = false;
@@ -2349,9 +2352,8 @@ void setup() {
23492352
if (!digitalRead(CAL_BUTTON) || !digitalRead(FBUTTON) || (old_version != u.raduino_version)) {
23502353
factory_settings();
23512354
}
2355+
delay(100);
23522356

2353-
//configure the PTT SENSE to use the internal pull-up
2354-
pinMode(PTT_SENSE, INPUT_PULLUP);
23552357
// check if PTT sense line is installed
23562358
PTTsense_installed = !digitalRead(PTT_SENSE);
23572359

0 commit comments

Comments
 (0)