Reputation: 1
assuming i've a ThreadX module flashed (or downloaded) is there a way to retrieve at run time from the Module Manager resident application the Module code and data size ? Thank you in advance, best regards
Upvotes: 0
Views: 122
Reputation: 1
Maybe i found the answer: in the C typedef description of module preamble (TXM_MODULE_PREAMBLE in txm_module.h) i've found:
ULONG txm_module_preamble_code_size; /* Module Instruction Area Size / ULONG txm_module_preamble_data_size; / Module Data Area Size */
Upvotes: 0