Added a GPIO to power on/off for external I2C sensor(s) (with LEDs)

Dependencies:   UniGraphic mbed vt100

18-Jun-2018 外部センサの電源オン・オフ機能は下位互換の為に無効になっていました。 この版で再度有効にしました。

Committer:
Rhyme
Date:
Fri Apr 13 04:19:23 2018 +0000
Revision:
0:846e2321c637
power to color sensor on/off test OK. Currently the function is disabled.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Rhyme 0:846e2321c637 1 #include "mbed.h"
Rhyme 0:846e2321c637 2 #include "edge_reset_mgr.h"
Rhyme 0:846e2321c637 3
Rhyme 0:846e2321c637 4 /**
Rhyme 0:846e2321c637 5 * System Reset Status Register 0 (RCM_SRS0) 0x4007_F000
Rhyme 0:846e2321c637 6 *
Rhyme 0:846e2321c637 7 * bit[7] : POR Power-On Reset
Rhyme 0:846e2321c637 8 * bit[6] : PIN External Reset Pin
Rhyme 0:846e2321c637 9 * bit[5] : WDOG Watchdog
Rhyme 0:846e2321c637 10 * bit[4] : (Reserved)
Rhyme 0:846e2321c637 11 * bit[3] : LOL Loss-of-Lock Reset
Rhyme 0:846e2321c637 12 * bit[2] : LOC Loss-of-Clock Reset
Rhyme 0:846e2321c637 13 * bit[1] : LVD Low-Voltage Detect Reset
Rhyme 0:846e2321c637 14 * bit[0] : WAKEUP Low Leakage Wakeup Reset
Rhyme 0:846e2321c637 15 */
Rhyme 0:846e2321c637 16 #define REG_RCM_SRS0 (uint8_t *)0x4007F000
Rhyme 0:846e2321c637 17 #define POR_RESET_BIT 0x80
Rhyme 0:846e2321c637 18 #define PIN_RESET_BIT 0x40
Rhyme 0:846e2321c637 19 #define WDG_RESET_BIT 0x20
Rhyme 0:846e2321c637 20 #define LOL_RESET_BIT 0x08
Rhyme 0:846e2321c637 21 #define LOC_RESET_BIT 0x04
Rhyme 0:846e2321c637 22 #define LVD_RESET_BIT 0x02
Rhyme 0:846e2321c637 23 #define WUP_RESET_BIT 0x01
Rhyme 0:846e2321c637 24
Rhyme 0:846e2321c637 25 /**
Rhyme 0:846e2321c637 26 * System Reset Status Register 1 (RCM_SRS1) 0x4007_F001
Rhyme 0:846e2321c637 27 *
Rhyme 0:846e2321c637 28 * bit[7:6] (Reserved)
Rhyme 0:846e2321c637 29 * bit[5] : SACKERR Stop Mode Acknowledge Error Reset
Rhyme 0:846e2321c637 30 * bit[4] : (Reserved)
Rhyme 0:846e2321c637 31 * bit[3] : MDM_AP MDM-AP System Reset Request
Rhyme 0:846e2321c637 32 * bit[2] : SW Software Reset
Rhyme 0:846e2321c637 33 * bit[1] : LOCKUP Core Lockup
Rhyme 0:846e2321c637 34 * bit[0] : (Reserved)
Rhyme 0:846e2321c637 35 */
Rhyme 0:846e2321c637 36 #define REG_RCM_SRS1 (uint8_t *)0x4007F001
Rhyme 0:846e2321c637 37 #define SACK_RESET_BIT 0x20
Rhyme 0:846e2321c637 38 #define MDM_RESET_BIT 0x08
Rhyme 0:846e2321c637 39 #define SW_RESET_BIT 0x04
Rhyme 0:846e2321c637 40 #define LOCKUP_RESET_BIT 0x02
Rhyme 0:846e2321c637 41
Rhyme 0:846e2321c637 42 #define IDX_POR_RESET 0
Rhyme 0:846e2321c637 43 #define IDX_PIN_RESET 1
Rhyme 0:846e2321c637 44 #define IDX_WDG_RESET 2
Rhyme 0:846e2321c637 45 #define IDX_LOL_RESET 3
Rhyme 0:846e2321c637 46 #define IDX_LOC_RESET 4
Rhyme 0:846e2321c637 47 #define IDX_LVD_RESET 5
Rhyme 0:846e2321c637 48 #define IDX_WUP_RESET 6
Rhyme 0:846e2321c637 49 #define IDX_SACK_RESET 7
Rhyme 0:846e2321c637 50 #define IDX_MDM_RESET 8
Rhyme 0:846e2321c637 51 #define IDX_SW_RESET 9
Rhyme 0:846e2321c637 52 #define IDX_LOCKUP_RESET 10
Rhyme 0:846e2321c637 53
Rhyme 0:846e2321c637 54 const char *reset_reason[] = {
Rhyme 0:846e2321c637 55 "Power On Reset",
Rhyme 0:846e2321c637 56 "Reset Pin Asserted",
Rhyme 0:846e2321c637 57 "Watch Dog Reset",
Rhyme 0:846e2321c637 58 "Loss of Lock Reset",
Rhyme 0:846e2321c637 59 "Loss of Clock Reset",
Rhyme 0:846e2321c637 60 "Low Voltage Detect Reset",
Rhyme 0:846e2321c637 61 "Low Leakage Wakeup Reset",
Rhyme 0:846e2321c637 62 "Stop Mode Acknowledge Error Reset",
Rhyme 0:846e2321c637 63 "MDM-AP System Reset Request",
Rhyme 0:846e2321c637 64 "Software Reset",
Rhyme 0:846e2321c637 65 "Core Lockup Reset",
Rhyme 0:846e2321c637 66 0
Rhyme 0:846e2321c637 67 } ;
Rhyme 0:846e2321c637 68
Rhyme 0:846e2321c637 69 void print_reset_reason(void)
Rhyme 0:846e2321c637 70 {
Rhyme 0:846e2321c637 71 extern char *reset_reason_str ;
Rhyme 0:846e2321c637 72 int idx = 0 ;
Rhyme 0:846e2321c637 73 uint8_t *data = REG_RCM_SRS0 ;
Rhyme 0:846e2321c637 74 if (*data & POR_RESET_BIT) {
Rhyme 0:846e2321c637 75 idx = IDX_POR_RESET ;
Rhyme 0:846e2321c637 76 }
Rhyme 0:846e2321c637 77 if (*data & PIN_RESET_BIT) {
Rhyme 0:846e2321c637 78 idx = IDX_PIN_RESET ;
Rhyme 0:846e2321c637 79 }
Rhyme 0:846e2321c637 80 if (*data & WDG_RESET_BIT) {
Rhyme 0:846e2321c637 81 idx = IDX_WDG_RESET ;
Rhyme 0:846e2321c637 82 }
Rhyme 0:846e2321c637 83 if (*data & LOL_RESET_BIT) {
Rhyme 0:846e2321c637 84 idx = IDX_LOL_RESET ;
Rhyme 0:846e2321c637 85 }
Rhyme 0:846e2321c637 86 if (*data & LVD_RESET_BIT) {
Rhyme 0:846e2321c637 87 idx = IDX_LVD_RESET ;
Rhyme 0:846e2321c637 88 }
Rhyme 0:846e2321c637 89 if (*data & LOC_RESET_BIT) {
Rhyme 0:846e2321c637 90 idx = IDX_LOC_RESET ;
Rhyme 0:846e2321c637 91 }
Rhyme 0:846e2321c637 92 if (*data & WUP_RESET_BIT) {
Rhyme 0:846e2321c637 93 idx = IDX_WUP_RESET ;
Rhyme 0:846e2321c637 94 }
Rhyme 0:846e2321c637 95 data = REG_RCM_SRS1 ;
Rhyme 0:846e2321c637 96 if (*data & SACK_RESET_BIT) {
Rhyme 0:846e2321c637 97 idx = IDX_SACK_RESET ;
Rhyme 0:846e2321c637 98 }
Rhyme 0:846e2321c637 99 if (*data & MDM_RESET_BIT) {
Rhyme 0:846e2321c637 100 idx = IDX_MDM_RESET ;
Rhyme 0:846e2321c637 101 }
Rhyme 0:846e2321c637 102 if (*data & SW_RESET_BIT) {
Rhyme 0:846e2321c637 103 idx = IDX_SW_RESET ;
Rhyme 0:846e2321c637 104 }
Rhyme 0:846e2321c637 105 if (*data & LOCKUP_RESET_BIT) {
Rhyme 0:846e2321c637 106 idx = IDX_LOCKUP_RESET ;
Rhyme 0:846e2321c637 107 }
Rhyme 0:846e2321c637 108 printf("%s\n", reset_reason[idx]) ;
Rhyme 0:846e2321c637 109 reset_reason_str = (char *)reset_reason[idx] ;
Rhyme 0:846e2321c637 110 }
Rhyme 0:846e2321c637 111
Rhyme 0:846e2321c637 112 /**
Rhyme 0:846e2321c637 113 * Software Reset
Rhyme 0:846e2321c637 114 *
Rhyme 0:846e2321c637 115 * From Cortex-M0 Devices Generic User Guide
Rhyme 0:846e2321c637 116 * 4.3.4 Application Interrupt and Reset Control Register
Rhyme 0:846e2321c637 117 *
Rhyme 0:846e2321c637 118 * Bit[31:16] : VECTCKEY
Rhyme 0:846e2321c637 119 * Bit[15] : ENDIANESS
Rhyme 0:846e2321c637 120 * Bit[14:3] : (Reserved)
Rhyme 0:846e2321c637 121 * Bit[2] : SYSRESETREQ
Rhyme 0:846e2321c637 122 * Bit[1] : VECTCLRACTIVE (reserved for debug use)
Rhyme 0:846e2321c637 123 * Bit[0] : (Reserved)
Rhyme 0:846e2321c637 124 *
Rhyme 0:846e2321c637 125 * Note: To trigger software reset, both VECTKEY=0x05FA and SYSRESETREQ
Rhyme 0:846e2321c637 126 * must be written at once, therefore the value will be
Rhyme 0:846e2321c637 127 * 0x05FA0004
Rhyme 0:846e2321c637 128 */
Rhyme 0:846e2321c637 129
Rhyme 0:846e2321c637 130 void software_reset(void)
Rhyme 0:846e2321c637 131 {
Rhyme 0:846e2321c637 132 SCB->AIRCR = 0x05FA0004 ;
Rhyme 0:846e2321c637 133 }
Rhyme 0:846e2321c637 134
Rhyme 0:846e2321c637 135 /**
Rhyme 0:846e2321c637 136 * reset_watch_dog
Rhyme 0:846e2321c637 137 * reset the watch dog counter
Rhyme 0:846e2321c637 138 * this function must be called within the limit (1sec)
Rhyme 0:846e2321c637 139 */
Rhyme 0:846e2321c637 140
Rhyme 0:846e2321c637 141 void reset_watch_dog(void)
Rhyme 0:846e2321c637 142 {
Rhyme 0:846e2321c637 143 SIM->SRVCOP = (uint32_t)0x55u;
Rhyme 0:846e2321c637 144 SIM->SRVCOP = (uint32_t)0xAAu;
Rhyme 0:846e2321c637 145 }