/* WEAK : symbol is only imported into other sources if no other source exports an alternative symbol.
If [WEAK] is used without symbol, all exported symbols are weak. */
// 意思就是告诉链接器:
// "我略弱但我很绅士, 如果你在别处看到和我一样的符号实例.你就用它吧. 表管我, 求忽视! "
示例如下:
图1是stm32库函数自带的,如果在应用程序中重新定义了函数如图2,就使用新定义的函数,忽略图1.