HAL_ChibiOS: added ADC1_Map to STM32 tables

This commit is contained in:
Andrew Tridgell 2018-01-08 12:12:07 +11:00
parent 3a004adbd4
commit 5a7e2f75d1
4 changed files with 129 additions and 0 deletions

View File

@ -962,3 +962,23 @@ AltFunction_map = {
"PH9:I2C3_SMBA" : 4,
"PH9:TIM12_CH2" : 9,
}
ADC1_map = {
# format is PIN : ADC1_CHAN
# extracted from tabula-addfunc-F405.csv
"PA0" : 0,
"PA1" : 1,
"PA2" : 2,
"PA3" : 3,
"PA4" : 4,
"PA5" : 5,
"PA6" : 6,
"PA7" : 7,
"PB0" : 8,
"PB1" : 9,
"PC0" : 10,
"PC1" : 11,
"PC2" : 12,
"PC3" : 13,
"PC4" : 14,
"PC5" : 15,
}

View File

@ -670,3 +670,23 @@ AltFunction_map = {
"PH0:EVENTOUT" : 15,
"PH1:EVENTOUT" : 15,
}
ADC1_map = {
# format is PIN : ADC1_CHAN
# extracted from tabula-addfunc-F412RG.csv
"PA0" : 0,
"PA1" : 1,
"PA2" : 2,
"PA3" : 3,
"PA4" : 4,
"PA5" : 5,
"PA6" : 6,
"PA7" : 7,
"PB0" : 8,
"PB1" : 9,
"PC0" : 10,
"PC1" : 11,
"PC2" : 12,
"PC3" : 13,
"PC4" : 14,
"PC5" : 15,
}

View File

@ -737,3 +737,23 @@ AltFunction_map = {
"PH9:TIM12_CH2" : 9,
}
ADC1_map = {
# format is PIN : ADC1_CHAN
# extracted from tabula-addfunc-F427.csv
"PA0" : 0,
"PA1" : 1,
"PA2" : 2,
"PA3" : 3,
"PA4" : 4,
"PA5" : 5,
"PA6" : 6,
"PA7" : 7,
"PB0" : 8,
"PB1" : 9,
"PC0" : 10,
"PC1" : 11,
"PC2" : 12,
"PC3" : 13,
"PC4" : 14,
"PC5" : 15,
}

View File

@ -0,0 +1,69 @@
#!/usr/bin/env python
'''
create additional functions ADC table, used for mapping analog pins to ADC channel numbers
Currently only extracts ADC1 channels
This assumes a csv file extracted from the datasheet using tablula:
https://github.com/tabulapdf/tabula
'''
import sys, csv, os
def is_pin(str):
'''see if a string is a valid pin name'''
if len(str) < 3:
return False
if str[0] != 'P':
return False
if str[1] not in "ABCDEFGH":
return False
try:
p = int(str[2:])
if p < 0 or p > 15:
return False
return True
except ValueError:
return False
def parse_adc_table(fname, table):
csvt = csv.reader(open(fname,'rb'))
i = 0
for row in csvt:
for col in row:
if is_pin(col) and row[-1].startswith('ADC1'):
chan = row[-1]
chan = chan.replace('\r', '')
chan = chan.replace(' ', '')
chan = chan.split('/')
chan = chan[0]
chan = chan.split(',')
chan = chan[0]
a = chan.split('_')
if len(a) != 2:
continue
chan_num = a[1]
if chan_num.startswith('IN'):
chan_num = chan_num[2:]
try:
chan_num = int(chan_num)
except Exception:
continue
table[col] = chan_num
table = {}
if len(sys.argv) != 2:
print("Error: expected 1 CSV file")
sys.exit(1)
parse_adc_table(sys.argv[1], table)
sys.stdout.write("ADC1_map = {\n");
sys.stdout.write('\t# format is PIN : ADC1_CHAN\n')
sys.stdout.write('\t# extracted from %s\n' % os.path.basename(sys.argv[1]))
for k in sorted(table.keys()):
s = '"' + k + '"'
sys.stdout.write('\t%-4s\t:\t%s,\n' % (s, table[k]))
sys.stdout.write("}\n");