// UART.C//// Generic software uart written in C, requiring a timer set to 3 times// the baud rate, and two software read/write pins for the receive and// transmit functions.//// * Received characters...
我们知道,通过make 或者 make linux可以生成我们需要的linux内核映像。该映像文件是非压缩的bin格式,可以直接运行在ram中,调试程序。然而当我们的内核和程序都调试完毕,必须发布的时候,通常应该采用压缩内核发布到flash中。压缩内核运行后,使用头部的自解压程序把自己解压到ra...