# test stm moduleimportstmimportpyb# test storing a full 32-bit number# turn on then off the A15(=yellow) LEDBSRR=0x18stm.mem32[stm.GPIOA+BSRR]=0x00008000pyb.delay(100)print(hex(stm.mem32[stm.GPIOA+stm.GPIO_ODR]&0x00008000))stm.mem32[stm.GPIOA+BSRR]=0x80000000print(hex(stm.mem32[stm.GPIOA+stm.GPIO_ODR]&0x00008000))