mirror of
https://github.com/thiagoralves/OpenPLC_v3.git
synced 2026-08-18 19:48:42 +08:00
Added debugger header file
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#ifndef DEBUG_H
|
||||
#define DEBUG_H
|
||||
|
||||
void set_endianness(uint8_t value);
|
||||
|
||||
uint16_t get_var_count(void);
|
||||
|
||||
//__attribute__((weak))
|
||||
size_t get_var_size(size_t);// {return 0;}
|
||||
|
||||
//__attribute__((weak))
|
||||
void *get_var_addr(size_t);// {return 0;}
|
||||
|
||||
//__attribute__((weak))
|
||||
void force_var(size_t, bool, void *);// {}
|
||||
|
||||
//__attribute__((weak))
|
||||
void set_trace(size_t, bool, void *);// {}
|
||||
|
||||
//__attribute__((weak))
|
||||
void trace_reset(void);// {}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user