stm32/wdt: Make singleton WDT object const so it goes in ROM.

pull/1/head
Damien George 2019-01-11 01:51:57 +11:00
parent 529dcce2be
commit 5b66c7b712
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ typedef struct _pyb_wdt_obj_t {
mp_obj_base_t base;
} pyb_wdt_obj_t;
STATIC pyb_wdt_obj_t pyb_wdt = {{&pyb_wdt_type}};
STATIC const pyb_wdt_obj_t pyb_wdt = {{&pyb_wdt_type}};
STATIC mp_obj_t pyb_wdt_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *all_args) {
// parse arguments