SoC设计中的知识点扫盲

列举一些常见的知识点


目录

ps和pl的区别

axf文件

bitband

sysTick



ps和pl的区别

PS: 处理系统 (Processing System) ,  就是与FPGA无关的ARM的SOC的部分。
PL: 可编程逻辑 (Progarmmable Logic), 就是FPGA部分。之所以叫PL,而不是叫FPGA,原因可能是考虑到让搞软件不要看了以后望而生畏。
对于ZYNQ,往大里说,就是两大功能块,PS 部分和 PL部分


axf文件


bitband


sysTick

The System Tick Time (SysTick) generates interrupt requests on a regular basis. This allows an OS to carry out context switching to support multiple tasking. For applications that do not require an OS, the SysTick can be used for time keeping, time measurement, or as an interrupt source for tasks that need to be executed regularly. 

意思就是:

系统计时(SysTick)定期生成中断请求。这允许操作系统执行上下文切换以支持多任务。例如时间片轮转。

对于不需要操作系统的应用程序,SysTick可以用于计时、时间测量,或者作为需要定期执行的任务的中断源。 


 

你可能感兴趣的:(使用M0,DesignStart,的样例SoC,知识点)