编译告警之warning: function **** could be declared with attribute 'norereturn'及_attribute__((noreturn))属性
1、使用MDK编写程序时,在有些函数没有返回值或者函数返回语句得不到执行的时候,编译器会提示将此函数声明为noreturn属性,否则会报如下warning :main.c(11): warning: function 'vTaskCode' could be declared with attribute 'noreturn' [-Wmissing-noreturn]2、此warning...