UNPKG

@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) 272 B
/** * Utility function for Node that allows you to read in a dbc file and output a raw string that can be loaded into * the Dbc classes .load function. * @param file File to unload */ declare const dbcReader: (file: string) => string; export default dbcReader;