aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32F37x/I2C/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'testhal/STM32F37x/I2C/main.c')
-rw-r--r--testhal/STM32F37x/I2C/main.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/testhal/STM32F37x/I2C/main.c b/testhal/STM32F37x/I2C/main.c
index 113515d39..46f190f2a 100644
--- a/testhal/STM32F37x/I2C/main.c
+++ b/testhal/STM32F37x/I2C/main.c
@@ -55,6 +55,7 @@ static msg_t blinker(void *arg) {
palClearPad(GPIOC, GPIOC_LED1);
chThdSleepMilliseconds(500);
}
+ return 0;
}
/*
@@ -95,12 +96,13 @@ int main(void) {
msg = i2cMasterTransmitTimeout(&I2CD2, 0x52, cmd, sizeof(cmd),
data, sizeof(data), TIME_INFINITE);
if (msg != RDY_OK)
- chSysHalt();
+ palTogglePad(GPIOC, GPIOC_LED3);
for (i = 0; i < 256; i++) {
+ chThdSleepMilliseconds(2);
msg = i2cMasterReceiveTimeout(&I2CD2, 0x52,
data, sizeof(data), TIME_INFINITE);
if (msg != RDY_OK)
- chSysHalt();
+ palTogglePad(GPIOC, GPIOC_LED3);
}
chThdSleepMilliseconds(500);
palTogglePad(GPIOC, GPIOC_LED2);