Hello,
I have a problem with TSA
This is code added in uC:
#include "data_example.h"
uint8_t sin_value;
uint8_t angle_step;
FMSTR_TSA_TABLE_BEGIN(first_table)
FMSTR_TSA_RW_VAR(sin_value,FMSTR_TSA_FLOAT)
FMSTR_TSA_RW_VAR(angle_step,FMSTR_TSA_FLOAT)
FMSTR_TSA_TABLE_END()
FMSTR_TSA_TABLE_BEGIN(files_and_links)
FMSTR_TSA_MEMFILE("/example.pmpx", example, sizeof(example))
FMSTR_TSA_PROJECT("FreeMASTER Project (embedded in device)", "/example.pmpx")
FMSTR_TSA_TABLE_END()
FMSTR_TSA_TABLE_LIST_BEGIN()
FMSTR_TSA_TABLE(first_table)
FMSTR_TSA_TABLE(files_and_links)
FMSTR_TSA_TABLE_LIST_END()
where data_example.h is obtained from command line
bin2h -c example < provaTSA.pmpx > data_example.h
When restart freemaster i don't see any variable(without elf) and also i tried connection Wizard.
I used P&E Micro Communication Plug-in
I don't understand what the problem could be
Thanks