Page 1 of 1

about _param_start and _param_stop

Posted: Wed Jan 13, 2016 10:37 am
by justinleeyang
Hi,
we are learning the crazyflie-firmware, About the paramsLen, the code as follow:
//These are set by the Linker
extern struct param_s _param_start;
extern struct param_s _param_stop;
......
paramsLen = &_param_stop - &_param_start
......

I don't understand the code, why? the Linker set the _param_start and _param_stop?
I don't find the setting.
Please help me, thanks!