问题/目标与方案目标:只允许高级函数访问OTP中的数据,其它应用程序不能直接读取OTP内容例程@ F413-Nucleo,F401-Nucleo目标环境应用程序使用的MCU为STM32F4分析(以F413为例)F413带有528字节的OTP,可以满足数据一次性写入之后无法被修改的需求为了实现只允许部分代码访问OTP的要求,需要将代码分区,并设置不同的访问权限F413带有MPU(Memory Pro
#include #include struct _pid { int pv; /*integer that contains the process value*/ int sp; /*integer that contains the set point*/ float integral; float pgain; float igain; float dgain;
评论