uint_32 FLASH_GetUserOptionByte(void)
フラッシュメモリのユーザ・オプション・バイト: IWDG_SW,RST_STOP,RST_STDBY を読み出します
無し
bit0 | :IWDG*1_SW |
bit1 | RST_STOP |
bit2 | RST_STDBY |
/* Gets the user option byte values */ u32 UserByteValue = 0x0; u32 IWDGValue = 0x0, RST_STOPValue = 0x0, RST_STDBYValue = 0x0; UserByteValue = FLASH_GetUserOptionByte(); IWDGValue = UserByteValue & 0x0001; RST_STOPValue = UserByteValue & 0x0002; RST_STDBYValue = UserByteValue & 0x0004;