Mercurial > public > ostc4
view Documentations/dump-rte.cfg @ 474:4be72d55b09a Improve_Button_Sleep
Added error detection for reading of ADC values in sleep mode:
ADC value were used for pressure calculation without making sure that the I2C operations used for reading the values were called successfully. As result a invalid pressure could be calculated causing the OSTC to wakeup or (worstcase) to enter dive mode. To avoid this the return values are now evaluated and pressure calculation is only done if I2C signaled no error during transmission
author | ideenmodellierer |
---|---|
date | Tue, 12 May 2020 22:42:52 +0200 |
parents | 01cc5959f199 |
children |
line wrap: on
line source
#! openocd -f # Define the prob used: source [find interface/stlink-v2.cfg] set WORKAREASIZE 0x8000 transport select hla_swd # Reset options set ENABLE_LOW_POWER 1 set STOP_WATCHDOG 1 reset_config srst_only srst_nogate connect_assert_srst # Seelct the right chip set CHIPNAME stm32f411RETx set CONNECT_UNDER_RESET 1 source [find target/stm32f4x.cfg] # Allow to continue execution after a connection: init_reset run #puts "Flash banks:" #flash banks #puts "Reading..." #flash dump_image CPU2-RTE-dump.hex 0x00000000 0x8000 #puts "Done." #exit