Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apps/dexdrip/dexdrip.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ radio_channel: See description in radio_link.h.
static XDATA volatile int start_channel = 0;
uint32 XDATA asciiToDexcomSrc(char *addr);
uint32 XDATA getSrcValue(char srcVal);
void setADCInputs();
volatile uint32 dex_tx_id;
#define NUM_CHANNELS (4)
static int8 fOffset[NUM_CHANNELS] = {0xCE,0xD5,0xE6,0xE5};
Expand Down Expand Up @@ -368,6 +369,7 @@ void goToSleep (uint32 seconds) {
}
}
makeAllOutputs();
setADCInputs();
}

void putchar(char c) {
Expand Down