FCD Data Collection
For each target microcontroller device in Flowcode there is a FCDX file containing detailed specifics about the device.
The FCDX file contains everything Flowcode needs to be able to generate code for the device. From the number of pins, analogue channels, peripherals right through to the number of interrupts and the configuration options.
The FCDX file is similar to many Flowcode v6 file types in that it is XML based. XML is basically tagged in a tree style hierarchy.
Example FCDX contents.
<root> <device name='16F1937' product='PIC' family='16F' bits='8' >
<clock max_speed='32000000' master_divider='4' default='19660800' /> <memory > <flash bytes='16384' /> <ram bytes='512' /> </memory>
</device> </root>
To pull out the data from the FCD you can use the Simulation FCD Functions. This example collects the device name and stores it into a local string variable.
To work out the number of pins a device has we can do this.
Similarly to do something like work out the number of PWM channels a device has we can do this.