@yinyinfurong_zmr/dbc-can
Version:
A general purpose CAN (Controller Area Network) toolbox with support for .dbc file parsing, CAN message decoding, and more
8 lines (7 loc) • 308 B
TypeScript
/**
* Utility function for writing a raw dbc string to a .dbc file
* @param file location and name of the dbc file to write to
* @param fileContent The DBC content that will be loaded into the file
*/
declare const dbcWriter: (file: string, fileContent: string) => void;
export default dbcWriter;