summaryrefslogtreecommitdiffstatshomepage
path: root/tests/pyb/modstm.py
blob: f1e147c0529b0c69cb6127b19c8d9bf50f341234 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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))