Change the configuration to use the modified Data Type Converter
- Last UpdatedApr 08, 2026
- 1 minute read
To change the configuration to use the modified Data Type Converter
- In the %DNADataRoot%\RealTime\config\Settings directory, either create or open the RealTime_KrunchDataTypeConverters.json file.
- If you changed the name of the Data Type Converter, proceed to step 3. Otherwise, proceed to step 4.
- Locate all references to the baseline Data Type Converter name and change them to the modified name.
- Change TypeName from DefaultUInt16Converter to CustomUInt16Converter.
- Change the AssembyName for the modified converter to the name of your compiled assembly from your custom project.
Example code
{
"RealTime": {
"KrunchDataTypeConverters": {
"ANALOG_USW": {
"TypeName": "OASySDNA.RealTime.KrunchDataTypeConverters.CustomUInt16Converter",
"AssemblyName": "OASySDNA.RealTime.KrunchDataTypeConverters.Custom"
}
}
}
}