diff options
author | Damien George <damien.p.george@gmail.com> | 2015-10-19 23:11:48 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-10-19 23:11:48 +0100 |
commit | 4078336d3803cbd9b9980c19d3429633e9a23a79 (patch) | |
tree | 203d1dd96170f15d780a84b4409e305cbfa0a768 /teensy | |
parent | 2f96b1982a84b21788756d9220b5c4ead657e8f7 (diff) | |
download | micropython-4078336d3803cbd9b9980c19d3429633e9a23a79.tar.gz micropython-4078336d3803cbd9b9980c19d3429633e9a23a79.zip |
teensy: Update to compile with latest changes to stmhal Pin class.
Diffstat (limited to 'teensy')
-rw-r--r-- | teensy/qstrdefsport.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/teensy/qstrdefsport.h b/teensy/qstrdefsport.h index 5a2b191da4..aa466624a4 100644 --- a/teensy/qstrdefsport.h +++ b/teensy/qstrdefsport.h @@ -64,6 +64,7 @@ Q(PinAF) Q(PinNamed) Q(init) Q(value) +Q(alt) Q(low) Q(high) Q(name) @@ -83,14 +84,18 @@ Q(pull) Q(index) Q(reg) Q(IN) +Q(OUT) +Q(OPEN_DRAIN) +Q(ALT) +Q(ALT_OPEN_DRAIN) +Q(ANALOG) +Q(PULL_UP) +Q(PULL_DOWN) Q(OUT_PP) Q(OUT_OD) Q(AF_PP) Q(AF_OD) -Q(ANALOG) Q(PULL_NONE) -Q(PULL_UP) -Q(PULL_DOWN) // for Timer class Q(Timer) |