STM32F1: Support M997 - Reset and begin flash (#15209)

This commit is contained in:
reloxx13 2019-09-11 19:12:58 +02:00 committed by Scott Lahteine
parent f4b198a9f5
commit 05cd483413
2 changed files with 5 additions and 0 deletions

View File

@ -369,4 +369,6 @@ void analogWrite(pin_t pin, int pwm_val8) {
analogWrite(uint8_t(pin), pwm_val8);
}
void flashFirmware(int16_t value) { nvic_sys_reset(); }
#endif // __STM32F1__

View File

@ -256,3 +256,6 @@ void analogWrite(pin_t pin, int pwm_val8); // PWM only! mul by 257 in maple!?
#define JTAG_DISABLE() afio_cfg_debug_ports(AFIO_DEBUG_SW_ONLY)
#define JTAGSWD_DISABLE() afio_cfg_debug_ports(AFIO_DEBUG_NONE)
#define PLATFORM_M997_SUPPORT
void flashFirmware(int16_t value);