• 大小: 8.51MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-07
  • 语言: 其他
  • 标签:

资源简介

MSP430F149BSL编程无须仿真器资料(新版本)用本玩430的最佳选择

资源截图

代码片段和文件信息

/*
*********************************************************************************************************
*                                                uC/OS-II
*                                          The Real-Time Kernel
*
*                              (c) Copyright 2002 Micrium Inc. Weston FL
*                                           All Rights Reserved
*
*                                                TI MSP430
*                                          实现全部LED灯每隔一秒的闪烁
*********************************************************************************************************
*/

#include “..\TEST\INCLUDES.H“

#define  TASK_STK_SIZE                  64       /* Size of each task‘s stacks (# of OS_STK entries)   */


OS_STK   TaskLedStk[TASK_STK_SIZE];
OS_STK   TaskLedStk2[TASK_STK_SIZE];

/*
*********************************************************************************************************
*                                           FUNCTION PROTOTYPES
*********************************************************************************************************
*/

void   TaskLed(void *data);                    /* Function prototypes of Startup task                */
void  TaskLed2 (void *pdata);

/*$PAGE*/
/*
*********************************************************************************************************
*                                                MAIN
*********************************************************************************************************
*/

void  main (void)
{
    WDTCTL = WDTPW + WDTHOLD;
    OSInit();                                              /* Initialize uC/OS-II                      */
    OSTaskCreate(TaskLed (void *)0 &TaskLedStk[TASK_STK_SIZE - 1] 0);
    OSTaskCreate(TaskLed2 (void *)0 &TaskLedStk2[TASK_STK_SIZE - 1] 1);
    OSStart();                                             /* Start multitasking                       */
}

/*
*********************************************************************************************************
*                                            STARTUP TASK1
*********************************************************************************************************
*/

void  TaskLed (void *pdata)
{
    pdata  = pdata;                                        // Prevent compiler warning                 
    WDTCTL = WDT_MDLY_32;                                  //Set time tick 32 mS                      
    IE1   |= 0x01;                                         // Enable Watchdog timer interrupts         

     //Application specific initialization 
    P6DIR |= 0XFF;
    P6OUT |= 0x0f;

    while (1) 
    {
        // Task specific code 
P6OUT ^= 0X0F;
        OSTimeDly(10);   
    }
}

void  TaskLed2 (void *pdata)
{
    pdata  = pdata;                                        // Prevent compiler warning                 
    
    while (1) 
    {
        // Task specific

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     453520  2010-06-11 19:47  MSP430F149资料(新版本)\MSP430F149单片机BSL编程说明.pdf

     文件    3198163  2009-07-16 10:42  MSP430F149资料(新版本)\USB驱动.rar

     文件     294912  2001-12-25 08:44  MSP430F149资料(新版本)\串口调试.exe

     文件     380979  2010-05-19 20:51  MSP430F149资料(新版本)\BSL编程资料\BSL一些说明.pdf

     文件     185556  2010-05-13 16:58  MSP430F149资料(新版本)\BSL编程资料\MspFet最新版本_BSL编程软件1(网上搜集).rar

     文件     252672  2010-07-08 16:11  MSP430F149资料(新版本)\BSL编程资料\BSL编程软件2(网上搜集).rar

     文件        446  2010-01-16 11:07  MSP430F149资料(新版本)\BSL编程资料\BSL编程软件2(网上搜集)\2618test.txt

     文件     692224  2008-10-30 21:10  MSP430F149资料(新版本)\BSL编程资料\BSL编程软件2(网上搜集)\SF_BSL430.exe

     文件       1162  2004-08-23 16:00  MSP430F149资料(新版本)\BSL编程资料\BSL编程软件2(网上搜集)\SF_BSL430.exe.manifest

     文件        250  2010-07-24 23:57  MSP430F149资料(新版本)\BSL编程资料\BSL编程软件2(网上搜集)\SF_BSL430.ini

     文件    2058939  2007-11-28 22:20  MSP430F149资料(新版本)\PL2303\vista\PL-2303 Vista Driver Installer.exe

     文件    1669134  2004-06-04 14:27  MSP430F149资料(新版本)\PL2303\winxp\PL-2303 Driver Installer.exe

     文件     110851  2001-08-09 01:13  MSP430F149资料(新版本)\PL2303\winxp\卸载旧驱动rm2303.exe

     文件        260  2007-01-23 09:07  MSP430F149资料(新版本)\PL2303\winxp\安装说明.txt

     文件       6726  2010-06-18 11:42  MSP430F149资料(新版本)\UCOS-II-MSP430149\uCOS-II-MSP430149.dep

     文件      15425  2010-06-18 11:26  MSP430F149资料(新版本)\UCOS-II-MSP430149\uCOS-II-MSP430149.ewd

     文件      47082  2010-06-18 11:42  MSP430F149资料(新版本)\UCOS-II-MSP430149\uCOS-II-MSP430149.ewp

     文件        171  2009-11-24 22:44  MSP430F149资料(新版本)\UCOS-II-MSP430149\uCOS-II-MSP430149.eww

     文件      48428  2010-06-18 11:42  MSP430F149资料(新版本)\UCOS-II-MSP430149\Debug\Exe\uCOS-II-MSP430149.d43

     文件       7079  2010-06-18 11:42  MSP430F149资料(新版本)\UCOS-II-MSP430149\Debug\Exe\uCOS-II-MSP430149.txt

     文件      12964  2010-06-18 11:40  MSP430F149资料(新版本)\UCOS-II-MSP430149\Debug\Obj\APP.r43

     文件      29136  2009-12-11 21:38  MSP430F149资料(新版本)\UCOS-II-MSP430149\Debug\Obj\OS_CPU_A.r43

     文件       5200  2009-11-25 12:47  MSP430F149资料(新版本)\UCOS-II-MSP430149\Debug\Obj\OS_CPU_C.r43

     文件       5973  2009-11-25 12:47  MSP430F149资料(新版本)\UCOS-II-MSP430149\Debug\Obj\OS_DBG.r43

     文件        478  2010-06-18 11:41  MSP430F149资料(新版本)\UCOS-II-MSP430149\Debug\Obj\uCOS-II-MSP430149.pbd

     文件     161457  2009-12-11 21:38  MSP430F149资料(新版本)\UCOS-II-MSP430149\Debug\Obj\uCOS_II.r43

     文件       5475  2003-10-17 16:29  MSP430F149资料(新版本)\UCOS-II-MSP430149\IAR4304.20B\OS_CPU.H

     文件      12097  2009-11-20 20:34  MSP430F149资料(新版本)\UCOS-II-MSP430149\IAR4304.20B\OS_CPU_A.s43

     文件      10104  2009-11-24 22:00  MSP430F149资料(新版本)\UCOS-II-MSP430149\IAR4304.20B\OS_CPU_C.C

     文件       2519  2010-06-18 11:42  MSP430F149资料(新版本)\UCOS-II-MSP430149\settings\uCOS-II-MSP430149.cspy.bat

............此处省略84个文件信息

评论

共有 条评论

相关资源