Initial check in

This commit is contained in:
2026-01-08 13:34:45 +01:00
commit bca620b050
44 changed files with 4832 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#ifndef __DVM_TYPES_H__
#define __DVM_TYPES_H__
typedef unsigned char u08;
typedef unsigned short u16;
typedef struct _config
{
u16 pre; // preamble 0x2849
double vref; // reference voltage value
double div10; // divider 10 real ratio
double div100; // divider 100 real ration
short delay; // comparator and other delay fix in timer clicks (8)
u16 post; // postamble 0x2849
} config ;
#endif