libopencm3/scripts/data/lpc43xx
Mike Naberezny 860d10940b Remove unused Python imports 2017-06-23 14:42:59 +00:00
..
README csv contributions from GNU Radio Conference 2012 HackFest. Thanks, David! 2013-07-07 13:52:08 -07:00
adc.yaml lpc43xx: Convert register definitions to YAML 2013-07-07 13:52:14 -07:00
atimer.yaml lpc43xx: Convert register definitions to YAML 2013-07-07 13:52:14 -07:00
ccu.yaml lpc43xx: Convert register definitions to YAML 2013-07-07 13:52:14 -07:00
cgu.yaml lpc43xx: Convert register definitions to YAML 2013-07-07 13:52:14 -07:00
creg.yaml lpc43xx: Convert register definitions to YAML 2013-07-07 13:52:14 -07:00
csv2yaml.py Remove unused Python imports 2017-06-23 14:42:59 +00:00
eventrouter.yaml lpc43xx: Convert register definitions to YAML 2013-07-07 13:52:14 -07:00
gen.py Remove unused Python imports 2017-06-23 14:42:59 +00:00
gima.yaml lpc43xx: Convert register definitions to YAML 2013-07-07 13:52:14 -07:00
gpdma.yaml lpc43xx: Convert register definitions to YAML 2013-07-07 13:52:14 -07:00
gpio.yaml lpc43xx: Convert register definitions to YAML 2013-07-07 13:52:14 -07:00
i2c.yaml lpc43xx: Convert register definitions to YAML 2013-07-07 13:52:14 -07:00
i2s.yaml lpc43xx: Convert register definitions to YAML 2013-07-07 13:52:14 -07:00
rgu.yaml lpc43xx: Convert register definitions to YAML 2013-07-07 13:52:14 -07:00
ritimer.yaml lpc43xx: Convert register definitions to YAML 2013-07-07 13:52:14 -07:00
scu.yaml lpc43xx: Convert register definitions to YAML 2013-07-07 13:52:14 -07:00
sgpio.yaml lpc43xx: Convert register definitions to YAML 2013-07-07 13:52:14 -07:00
ssp.yaml lpc43xx: Convert register definitions to YAML 2013-07-07 13:52:14 -07:00
usb.yaml lpc43xx: Convert register definitions to YAML 2013-07-07 13:52:14 -07:00
yaml_odict.py lpc43xx: Move YAML OrderedDict code to separate module 2013-07-07 13:52:14 -07:00

README

These files contain information derived from the LPC43xx user manual (UM10503).
They are intended to be used by scripts for the generation of header files and
functions.

Each line describes a field within a register.  The comma separated values are:
	register name (as found in include/lpc43xx/*.h),
	bit position,
	length in bits,
	field name,
	description/comment (may be empty if not specified in data sheet),
	reset value (may be empty if not specified in data sheet),
	access (may be empty if not specified in data sheet)

The access field may consist of any of the following codes:
	r:   read only
	rw:  read/write
	rwc: read/write one to clear
	rwo: read/write once
	rws: read/write one to set
	w:   write only
	ws:  write one to set

Descriptions containing commas are quoted.