- Jun 22 Tue 2021 08:51
Const用法及文章
- May 29 Sat 2021 12:45
[Cover] 刻在我心底的名字
高鐵桃園站的一風堂拉麵( 最近疫情肆虐只好放些舊照 )
- Apr 18 Sun 2021 12:42
[Cover] 披星戴月的想你 - 告五人樂團
前幾天在youtube搜尋音樂的時候, 發現告五人樂團有新歌~ 在這座城市遺失了你
- May 10 Fri 2019 22:16
天文與神話故事: 土星與其衛星
【摩羯座的人注意了】神就來自你們的守護星 | 老高與小茉 Mr & Mrs Gao
https://www.youtube.com/watch?v=EkELAx2Uk1w&t=195s
土星衛星 https://zh.wikipedia.org/wiki/%E6%9C%A8%E6%98%9F%E7%9A%84%E5%8D%AB%E6%98%9F
- Apr 18 Thu 2019 17:15
How to : const & pointer
- Apr 18 Thu 2019 11:56
print pointer address in C
- Apr 16 Tue 2019 10:22
Add SSH key in gerrit server
- Sep 04 Tue 2018 10:52
Stack v.s. Heap
https://stackoverflow.com/questions/79923/what-and-where-are-the-stack-and-heap
The stack is the memory set aside as scratch space for a thread of execution. When a function is called, a block is reserved on the top of the stack for local variables and some bookkeeping data. When that function returns, the block becomes unused and can be used the next time a function is called. The stack is always reserved in a LIFO (last in first out) order; the most recently reserved block is always the next block to be freed. This makes it really simple to keep track of the stack; freeing a block from the stack is nothing more than adjusting one pointer.
- Aug 17 Fri 2018 08:13
[Cover]十年 - 52Hz
- 十年
作詞:嚴雲農
- Jun 21 Thu 2018 13:00
LOG 工具與方法 va_xxx
在專案K2 VIM中, 有分出一個middleware 為 sys_console
專門用來印debug message, 裡面會定義使用哪一個UART port(使用BSP UART)
用來替代一般程式內的printf