Gas Pressure Display Updated Power control for Pressure sensor added

Dependencies:   UniGraphic mbed vt100

Committer:
Rhyme
Date:
Fri Feb 16 08:27:50 2018 +0000
Revision:
0:37c8ecde13c2
control PSE530 power via PTC5 (pse530_en)

Who changed what in which revision?

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