You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
349 B
13 lines
349 B
# test stm module
|
|
|
|
import stm
|
|
import pyb
|
|
|
|
# test storing a full 32-bit number
|
|
# turn on then off the A15(=yellow) LED
|
|
BSRR = 0x18
|
|
stm.mem32[stm.GPIOA + BSRR] = 0x00008000
|
|
pyb.delay(100)
|
|
print(hex(stm.mem32[stm.GPIOA + stm.GPIO_ODR] & 0x00008000))
|
|
stm.mem32[stm.GPIOA + BSRR] = 0x80000000
|
|
print(hex(stm.mem32[stm.GPIOA + stm.GPIO_ODR] & 0x00008000))
|
|
|