I2C hang recover function added

Dependencies:   UniGraphic mbed vt100

In this version, check_i2c_pins function was added in edge_mgr.cpp.

プログラムの起動時、I2Cモジュールを初期化する前に、I2Cに使用するピンの電位を確認し
もし一方でも Low に張り付いていた場合、SCL を GPIO 出力に設定して 
所定回数 (I2C_UNLOCK_TRIAL_CYCLE) 反転させることにより、疑似リセットクロックを生成します。

その後は、通常の起動手順に復帰し、以降はこれまでと同様の動作をします。

Committer:
gaku_miyagawa
Date:
Mon Jun 18 02:55:38 2018 +0000
Revision:
2:de22987be9ba
Parent:
0:d895cd1cd897
SBU SPECIAL

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Rhyme 0:d895cd1cd897 1 #ifndef _EDGE_MGR_H_
Rhyme 0:d895cd1cd897 2 #define _EDGE_MGR_H_
Rhyme 0:d895cd1cd897 3 #include "edge_sensor.h"
Rhyme 0:d895cd1cd897 4
Rhyme 0:d895cd1cd897 5 void init_display(void) ;
Rhyme 0:d895cd1cd897 6 void init_sensors(void) ;
Rhyme 0:d895cd1cd897 7 void enable_sensors(void) ;
Rhyme 0:d895cd1cd897 8 void disable_sensors(void) ;
Rhyme 0:d895cd1cd897 9 int init_edge_attribute(void) ;
Rhyme 0:d895cd1cd897 10 void edge_splash(void) ;
Rhyme 0:d895cd1cd897 11 void edge_loop(uint32_t tick_count) ;
Rhyme 0:d895cd1cd897 12 void reboot_edge(void) ;
Rhyme 0:d895cd1cd897 13 void draw_chart_frame(void) ;
Rhyme 0:d895cd1cd897 14
Rhyme 0:d895cd1cd897 15 extern ILI9341 *display ;
Rhyme 0:d895cd1cd897 16 extern char *reset_reason_str ;
Rhyme 0:d895cd1cd897 17 extern edge_sensor *sensor[] ;
Rhyme 0:d895cd1cd897 18 extern bool verbos ;
Rhyme 0:d895cd1cd897 19 extern int display_mode ;
Rhyme 0:d895cd1cd897 20 extern int edge_mgr_status ;
Rhyme 0:d895cd1cd897 21 extern bool reboot_requested ;
Rhyme 0:d895cd1cd897 22
Rhyme 0:d895cd1cd897 23 extern const unsigned char Arial12x12[] ;
Rhyme 0:d895cd1cd897 24 extern const unsigned char Arial24x23[] ;
Rhyme 0:d895cd1cd897 25 extern const unsigned char Arial28x28[] ;
Rhyme 0:d895cd1cd897 26
Rhyme 0:d895cd1cd897 27 #define EDGE_MGR_INIT 0
Rhyme 0:d895cd1cd897 28 #define EDGE_MGR_RUNNING 1
Rhyme 0:d895cd1cd897 29
Rhyme 0:d895cd1cd897 30 #endif /* _EDGE_MGR_H_ */