4385|3

1万

帖子

25

TA的资源

裸片初长成(高级)

楼主
 

CC3200有没有不使用操作系统的例程? [复制链接]

本来对WIFI就不太理解,TI提供的例程又是操作系统下使用的,对它的过程调用就很难看了。手里的CC3200板子总想捣鼓一下,苦于没有适当的例程参考。



此帖出自无线连接论坛

最新回复

涉及到wifi部分的貌似都有系统。 你要是不涉及到wifi,那么他就是个M4核心的处理器,自然不用系统。 例程里面最简单的blinky例程,就不涉及系统啊。 int main() {     //     // Initialize Board configurations     //     BoardInit();         //     // Power on the corresponding GPIO port B for 9,10,11.     // Set up the GPIO lines to mode 0 (GPIO)     //     PinMuxConfig();     GPIO_IF_LedConfigure(LED1|LED2|LED3);     GPIO_IF_LedOff(MCU_ALL_LED_IND);         //     // Start the LEDBlinkyRoutine     //     LEDBlinkyRoutine();     return 0; } void LEDBlinkyRoutine() {     //     // Toggle the lines initially to turn off the LEDs.     // The values driven are as required by the LEDs on the LP.     //     GPIO_IF_LedOff(MCU_ALL_LED_IND);     while(1)     {         //         // Alternately toggle hi-low each of the GPIOs         // to switch the corresponding LED on/off.         //         MAP_UtilsDelay(8000000);         GPIO_IF_LedOn(MCU_RED_LED_GPIO);         MAP_UtilsDelay(8000000);         GPIO_IF_LedOff(MCU_RED_LED_GPIO);         MAP_UtilsDelay(8000000);         GPIO_IF_LedOn(MCU_ORANGE_LED_GPIO);         MAP_UtilsDelay(8000000);         GPIO_IF_LedOff(MCU_ORANGE_LED_GPIO);         MAP_UtilsDelay(8000000);         GPIO_IF_LedOn(MCU_GREEN_LED_GPIO);         MAP_UtilsDelay(8000000);         GPIO_IF_LedOff(MCU_GREEN_LED_GPIO);     } } static void BoardInit(void) { /* In case of TI-RTOS vector table is initialize by OS itself */ #ifndef USE_TIRTOS     //     // Set vector table base     // #if defined(ccs)     MAP_IntVTableBaseSet((unsigned long)&g_pfnVectors[0]); #endif #if defined(ewarm)     MAP_IntVTableBaseSet((unsigned long)&__vector_table); #endif #endif         //     // Enable Processor     //     MAP_IntMasterEnable();     MAP_IntEnable(FAULT_SYSTICK);     PRCMCC3200MCUInit(); }  详情 回复 发表于 2016-11-22 15:57
点赞 关注
 

回复
举报

1453

帖子

18

TA的资源

纯净的硅(高级)

沙发
 
除了TI提供的CCS,IAR等开发环境外,energia也支持了CC3200,当然也是有例子的。试了一下,在下载方面更是方便了很多。多一条路子,多一些参考。
此帖出自无线连接论坛
个人签名http://weibo.com/u/1391449055
 
 
 

回复

169

帖子

1

TA的资源

纯净的硅(初级)

板凳
 
涉及到wifi部分的貌似都有系统。
你要是不涉及到wifi,那么他就是个M4核心的处理器,自然不用系统。

例程里面最简单的blinky例程,就不涉及系统啊。

int
main()
{
    //
    // Initialize Board configurations
    //
    BoardInit();
   
    //
    // Power on the corresponding GPIO port B for 9,10,11.
    // Set up the GPIO lines to mode 0 (GPIO)
    //
    PinMuxConfig();
    GPIO_IF_LedConfigure(LED1|LED2|LED3);

    GPIO_IF_LedOff(MCU_ALL_LED_IND);
   
    //
    // Start the LEDBlinkyRoutine
    //
    LEDBlinkyRoutine();
    return 0;
}


void LEDBlinkyRoutine()
{
    //
    // Toggle the lines initially to turn off the LEDs.
    // The values driven are as required by the LEDs on the LP.
    //
    GPIO_IF_LedOff(MCU_ALL_LED_IND);
    while(1)
    {
        //
        // Alternately toggle hi-low each of the GPIOs
        // to switch the corresponding LED on/off.
        //
        MAP_UtilsDelay(8000000);
        GPIO_IF_LedOn(MCU_RED_LED_GPIO);
        MAP_UtilsDelay(8000000);
        GPIO_IF_LedOff(MCU_RED_LED_GPIO);
        MAP_UtilsDelay(8000000);
        GPIO_IF_LedOn(MCU_ORANGE_LED_GPIO);
        MAP_UtilsDelay(8000000);
        GPIO_IF_LedOff(MCU_ORANGE_LED_GPIO);
        MAP_UtilsDelay(8000000);
        GPIO_IF_LedOn(MCU_GREEN_LED_GPIO);
        MAP_UtilsDelay(8000000);
        GPIO_IF_LedOff(MCU_GREEN_LED_GPIO);
    }

}

static void
BoardInit(void)
{
/* In case of TI-RTOS vector table is initialize by OS itself */
#ifndef USE_TIRTOS
    //
    // Set vector table base
    //
#if defined(ccs)
    MAP_IntVTableBaseSet((unsigned long)&g_pfnVectors[0]);
#endif
#if defined(ewarm)
    MAP_IntVTableBaseSet((unsigned long)&__vector_table);
#endif
#endif
   
    //
    // Enable Processor
    //
    MAP_IntMasterEnable();
    MAP_IntEnable(FAULT_SYSTICK);

    PRCMCC3200MCUInit();
}
此帖出自无线连接论坛

点评

学的就是WIFI,对于这个芯片,只玩M4就没有什么意义了。  详情 回复 发表于 2016-11-22 16:14
 
 
 

回复

1万

帖子

25

TA的资源

裸片初长成(高级)

4
 
cc1989summer 发表于 2016-11-22 15:57
涉及到wifi部分的貌似都有系统。
你要是不涉及到wifi,那么他就是个M4核心的处理器,自然不用系统。

例 ...

学的就是WIFI,对于这个芯片,只玩M4就没有什么意义了。
此帖出自无线连接论坛
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/9 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表