zoukankan      html  css  js  c++  java
  • 乱七八糟

    1、关于linker command script:

    The linker command script defines the memory map for the platform (where internal, shared and external memory start, etc.) and where we want our code and data sections to be placed.

    2、关于GEL file:

    Please note that the simple platform library application code is assuming that everything is running from shared memory (MSMCRAM) - so no GEL file is needed. It is preferred to run the respective CCS GEL file for that platform before loading and running any application.

    3、关于MCSDK中的Platform Library的使用:

    1、需要在项目predefined symbols中添加SOC_C6678。这么做,实际上是因为CSL库中的cslr_cgem.h中43行

    #if defined(SOC_AM572x)||defined(SOC_AM571x)||defined(SOC_C6678)||defined(SOC_C6657)
    #include <ti/csl/src/ip/cgem/V1/cslr_cgem.h>
    #else
    #include <ti/csl/src/ip/cgem/V0/cslr_cgem.h>
    #endif /* SOC_XXXXX */
    

    2、在调用Platform Library的同时,还需要调用CSL库;

    4

    关于MCSDK中的历程二,使用BIOS的led_play:c代码中的#include <ti/bios/include/swi.h>需要改为#include <ti/sysbios/knl/swi.h>

    5

    使用Eclipse RTSC project需要建立.cfg file。它有三个作用:1.) It replaces the linker.cmd file 2.) Allows you to include the various modules from BIOS and other Components you wish to use and 3.) allows you to configure default settings within them.

    6

    CCS代码补全Alt+/

  • 相关阅读:
    feign.RetryableException: Read timed out
    字段重复性校验
    时间的问题总结
    Maven使用mvn命令生成一个spring mvc的web项目
    Mac OS安装brew
    Docker部署Web应用到Tomcat
    Docker安装使用Oracle 11g
    Python 修改AD密码
    Let's Encrypt 证书 wget 报错
    dedecms获取指定栏目下的文章数量
  • 原文地址:https://www.cnblogs.com/liqi120150/p/6158808.html
Copyright © 2011-2022 走看看