Difference between revisions of "FCD Data Collection"

From Flowcode Help
Jump to navigationJump to search
 
Line 20: Line 20:
 
To work out the number of pins a device has we can do this.
 
To work out the number of pins a device has we can do this.
  
[[File:FCD_NumPins.jpg]]
+
[[File:Fcd-data-collection-ss-1.png]]
  
  
Line 27: Line 27:
 
{{Fcfile|FCD_NumPWMs.fcfx|Count PWMs Example}}
 
{{Fcfile|FCD_NumPWMs.fcfx|Count PWMs Example}}
  
[[File:FCD_NumPWMs.jpg]]
+
[[File:Fcd-data-collection-ss-2.png]]
  
  

Latest revision as of 12:17, 5 August 2019

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 file types in that it is XML based. XML is basically tagged in a tree style hierarchy. We can open the FCDX file using a text editor to see the contents and see the paths to use to collect the data we require.


Example FCDX contents.

FCD.jpg


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.

FCD Dev.jpg


To work out the number of pins a device has we can do this.

Fcd-data-collection-ss-1.png


Similarly to do something like work out the number of PWM channels a device has we can do this.

FC6 Icon.png Count PWMs Example

Fcd-data-collection-ss-2.png


The FCD helper component is designed to make it easier to pull lists and other specifics from the target FCDX files.


By using the File API commands it should also be possible to search through the FCDX files to find target devices with specific criteria, e.g. number of UART peripherals or specific amount of on-board RAM.