I messed up the merge, so pushing it over to another repo so I don't lose it. Will tidy up and remove later

Dependencies:   BufferedSerial FatFileSystemCpp mbed

Committer:
AndyA
Date:
Thu Aug 12 11:30:14 2021 +0000
Revision:
44:fe7fcf62c75d
Parent:
39:3cd9e498b5c6
Child:
47:8d577dfb7eb1
Make VIPS format output flexible;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
JamieB 25:7002be632308 1 [Serial Output Format]
JamieB 25:7002be632308 2 # Sets the serial output format.
JamieB 25:7002be632308 3 # 0 = VIPS (Default)
JamieB 25:7002be632308 4 # 1 = FreeD
JamieB 25:7002be632308 5 --------------------------------
JamieB 25:7002be632308 6 Output_Format=0
JamieB 25:7002be632308 7 --------------------------------
JamieB 39:3cd9e498b5c6 8
JamieB 25:7002be632308 9 [Fiz Format]
JamieB 25:7002be632308 10 # Sets the FIZ reader to use
JamieB 25:7002be632308 11 # 0 - Preston (default)
JamieB 25:7002be632308 12 # 1 - Fuji passive listen mode (skycam)
JamieB 25:7002be632308 13 # 2 - Fuji active mode
JamieB 39:3cd9e498b5c6 14 # 3 - Canon
JamieB 25:7002be632308 15 --------------------------------
JamieB 39:3cd9e498b5c6 16 FIZ_Format=3
JamieB 25:7002be632308 17 --------------------------------
JamieB 39:3cd9e498b5c6 18
JamieB 25:7002be632308 19 [Ethernet Port]
JamieB 25:7002be632308 20 # Sets the UDP port for FreeD network output.
JamieB 25:7002be632308 21 # Data is sent as a UDP broadcast on the select port number.
JamieB 25:7002be632308 22 # A port number of 0 disables UDP output.
JamieB 25:7002be632308 23 --------------------------------
JamieB 25:7002be632308 24 FreeD_Port=12345
JamieB 25:7002be632308 25 --------------------------------
JamieB 39:3cd9e498b5c6 26
JamieB 25:7002be632308 27 [Network Settings]
JamieB 25:7002be632308 28 # Set the Static IPv4 address to use for the ethernet interface.
JamieB 25:7002be632308 29 # NOTE: All 3 values must be set for a static address to be used otherwise DHCP will be used.
JamieB 25:7002be632308 30 # Comment out the line using any additional characters at the beginning to ignore
JamieB 25:7002be632308 31 --------------------------------
JamieB 25:7002be632308 32 //IP_addr=aaa.bbb.ccc.ddd
JamieB 25:7002be632308 33 //Subnet=aaa.bbb.ccc.ddd
JamieB 25:7002be632308 34 //Gateway=aaa.bbb.ccc.ddd
JamieB 25:7002be632308 35 --------------------------------
JamieB 25:7002be632308 36
JamieB 39:3cd9e498b5c6 37 [Filter_Settings]
JamieB 39:3cd9e498b5c6 38 #Low pass filter settings for channels that have it enabled.
JamieB 39:3cd9e498b5c6 39 #Filter is of order n with a cut off at m Hz assuming input data rate is at r Hz
JamieB 39:3cd9e498b5c6 40 #Filter order must be set to enable filters.
JamieB 39:3cd9e498b5c6 41 #Frequency default is 10Hz
JamieB 39:3cd9e498b5c6 42 #Rate default is 100Hz
JamieB 39:3cd9e498b5c6 43 //FilterOrder=1
JamieB 39:3cd9e498b5c6 44 //FilterFreq=7
JamieB 39:3cd9e498b5c6 45 //FilterRate=100
JamieB 25:7002be632308 46
JamieB 39:3cd9e498b5c6 47 //FilterXY=0
JamieB 39:3cd9e498b5c6 48 //FilterZ=0
JamieB 39:3cd9e498b5c6 49 //FilterRoll=0
JamieB 39:3cd9e498b5c6 50 //FilterPitch=1
JamieB 39:3cd9e498b5c6 51 //FilterYaw=0
JamieB 39:3cd9e498b5c6 52 # Enable channels to low pass filter. All filters use the settings given above.
JamieB 39:3cd9e498b5c6 53 # A value of 1 enables the filter. A value of 0 or skipping the line disables the filter.
JamieB 39:3cd9e498b5c6 54
JamieB 39:3cd9e498b5c6 55 # NOTE-The filter will add latency so a filtered channel will be delayed relative to an unfiltered one.
JamieB 39:3cd9e498b5c6 56
AndyA 44:fe7fcf62c75d 57 [Additional outputs]
AndyA 44:fe7fcf62c75d 58 # By default FIZ box VIPS format output only output the fields required by unreal
AndyA 44:fe7fcf62c75d 59 # even if the VIPS itself is configured to output more data. This is intended to minimise radio traffic
AndyA 44:fe7fcf62c75d 60 # while allowing debug data to be avalible when connecting directly to VIPS.
AndyA 44:fe7fcf62c75d 61 # Setting this option to 1 allows additional fields to be passed through the FIZ box.
AndyA 44:fe7fcf62c75d 62 # Currently supported fields are:
AndyA 44:fe7fcf62c75d 63 # Used Beacon List (mask value 0x1000)
AndyA 44:fe7fcf62c75d 64 //ExtendedOutput=1
JamieB 39:3cd9e498b5c6 65
JamieB 25:7002be632308 66 [NOTES]
JamieB 25:7002be632308 67 - All settings are case sensitive.
JamieB 25:7002be632308 68 - Do NOT include spaces in the options lines.
JamieB 25:7002be632308 69 - All options default to a value of 0 if omitted from the file.