Skip to content

Commit 169b516

Browse files
Merge pull request #253 from alanbjohnston/pico-v0.35-i2c
Pico v0.35 i2c
2 parents 3ce40e6 + 3cf12da commit 169b516

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cubesatsim/cubesatsim.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ void setup() {
158158
configure_wifi();
159159
}
160160
*/
161-
/// start_button_isr();
161+
start_button_isr();
162162

163163
// setup_sstv();
164164
picosstvpp_begin(26);
@@ -418,7 +418,7 @@ void read_config_file() {
418418
// latitude = toAprsFormat(latitude);
419419
// longitude = toAprsFormat(longitude);
420420
// }
421-
Serial.printf("sim_yes: %s\n", sim_yes);
421+
// Serial.printf("sim_yes: %s\n", sim_yes);
422422
char yes_string[] = "yes";
423423
// if (strcmp(sim_yes, yes_string) == 0) {
424424
if (sim_yes[0] == 'y') {
@@ -3773,7 +3773,7 @@ void start_button_isr() {
37733773

37743774
Serial.println("Starting pushbutton ISR");
37753775

3776-
if (ITimer1.attachInterruptInterval(10000, TimerHandler1))
3776+
if (ITimer1.attachInterruptInterval(2000000, TimerHandler1))
37773777
{
37783778
if (debug_mode)
37793779
Serial.print(F("Starting ITimer1 OK, micros() = "));

0 commit comments

Comments
 (0)