Skip to content

Commit 9a80409

Browse files
committed
tperiph: ~10hz -> ~100hz
1 parent 27330c4 commit 9a80409

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

TelemetryPeripheral/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ build:
4141

4242
# /dev/ttyACM0 /dev/ttyUSB0
4343
upload:
44-
avrdude -c serialupdi -p attiny1616 -P ch9102 -e -U flash:w:out/TelemetryPeripheral/default.elf
44+
avrdude -c serialupdi -p attiny1616 -P ch9102 -e -U flash:w:out/TelemetryPeripheral/default.elf # adafruit UPDI friend programmer
45+
# avrdude -c serialupdi -p attiny1616 -P pl2303 -e -U flash:w:out/TelemetryPeripheral/default.elf # adafruit USB -TTL serial adapter
4546

4647
link_compile_commands:
4748
ln -s $(BUILD_DIRECTORY)/compile_commands.json .

TelemetryPeripheral/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ void mcp2515_fill_txbuf2(uint32_t id, uint8_t data[], uint8_t dlc) {
141141

142142
int main() {
143143
SYSTEM_Initialize();
144-
DELAY_milliseconds(100);
144+
DELAY_milliseconds(10);
145145

146146
// Setup will block if sensor is not connected!!!
147147
if (HAS_TIRETEMP_1x8) d6t_8lh_setup();

0 commit comments

Comments
 (0)