资源简介

德州仪器MSP430系列F5529芯片的IAR工程,里面包含众多底层程序包括PWM、ADC、GPIO、SFR、UART、SPI、IIC、WDT、DMA等

资源截图

代码片段和文件信息

/*******************************************************************************
 *

 * This is a template for early application low-level initialization.
 *
 * The following license agreement applies to linker command files
 * example projects (unless another license is explicitly stated) the
 * cstartup code low_level_init.c and some other low-level runtime
 * library files.
 *
 *
 * Copyright 2013 IAR Systems AB.
 *
 * This source code is the property of IAR Systems. The source code may only
 * be used together with the IAR embedded Workbench. Redistribution and use
 * in source and binary forms with or without modification is permitted
 * provided that the following conditions are met:
 *
 * - Redistributions of source code in whole or in part must retain the
 * above copyright notice this list of conditions and the disclaimer below.
 *
 * - IAR Systems name may not be used to endorse or promote products
 * derived from this software without specific prior written permission.
 *
 * THE SOFTWARE IS PROVIDED “AS IS“ AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL DIRECT INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE DATA OR PROFITS WHETHER IN AN
 * ACTION OF CONTRACT NEGLIGENCE OR OTHER TORTIOUS ACTION ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 *
 ******************************************************************************/

/*
 * The function __low_level_init it called by the start-up code before
 * “main“ is called and before data segment initialization is
 * performed.
 *
 * This is a template file modify to perform any initialization that
 * should take place early.
 *
 * The return value of this function controls if data segment
 * initialization should take place. If 0 is returned it is bypassed.
 *
 * For the MSP430 microcontroller family please consider disabling
 * the watchdog timer here as it could time-out during the data
 * segment initialization.
 */

#include 
#include “msp430.h“

int __low_level_init(void)
{
  /* Insert your low-level initializations here */
  WDTCTL = WDTPW | WDTHOLD;
  
  /*
   * Return value:
   *
   *  1 - Perform data segment initialization.
   *  0 - Skip data segment initialization.
   */

  return 1;
}

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

     文件      63208  2014-08-01 23:10  IAR\Backup (2) of simpleUsbBackchannel.ewp

     文件      20159  2014-01-03 07:19  IAR\Backup of simpleUsbBackchannel.ewd

     文件      58581  2014-01-03 07:19  IAR\Backup of simpleUsbBackchannel.ewp

     文件     161461  2019-07-21 21:46  IAR\Debug\Exe\simpleUsbBackchannel.d43

     文件     359204  2019-07-21 21:45  IAR\Debug\Obj\BCUart.pbi

     文件      10555  2014-08-01 23:11  IAR\Debug\Obj\BCUart.pbi.cout

     文件      10994  2019-07-21 21:45  IAR\Debug\Obj\BCUart.pbi.xcl

     文件      20909  2019-07-21 21:46  IAR\Debug\Obj\BCUart.r43

     文件     395043  2019-07-21 21:45  IAR\Debug\Obj\descriptors.pbi

     文件      10571  2014-08-01 23:11  IAR\Debug\Obj\descriptors.pbi.cout

     文件      11010  2019-07-21 21:45  IAR\Debug\Obj\descriptors.pbi.xcl

     文件      19245  2019-07-21 21:46  IAR\Debug\Obj\descriptors.r43

     文件     644345  2019-07-21 21:45  IAR\Debug\Obj\dma.pbi

     文件      10577  2014-08-01 23:10  IAR\Debug\Obj\dma.pbi.cout

     文件      11016  2019-07-21 21:45  IAR\Debug\Obj\dma.pbi.xcl

     文件      22409  2019-07-21 21:46  IAR\Debug\Obj\dma.r43

     文件     636522  2019-07-21 21:45  IAR\Debug\Obj\flash.pbi

     文件      10579  2014-08-01 23:10  IAR\Debug\Obj\flash.pbi.cout

     文件      11018  2019-07-21 21:45  IAR\Debug\Obj\flash.pbi.xcl

     文件      23823  2019-07-21 21:46  IAR\Debug\Obj\flash.r43

     文件     660019  2019-07-21 21:45  IAR\Debug\Obj\gpio.pbi

     文件      10578  2014-08-01 23:10  IAR\Debug\Obj\gpio.pbi.cout

     文件      11017  2019-07-21 21:45  IAR\Debug\Obj\gpio.pbi.xcl

     文件     104752  2019-07-21 21:46  IAR\Debug\Obj\gpio.r43

     文件     681546  2019-07-21 21:45  IAR\Debug\Obj\hal.pbi

     文件      10552  2014-08-01 23:11  IAR\Debug\Obj\hal.pbi.cout

     文件      10991  2019-07-21 21:45  IAR\Debug\Obj\hal.pbi.xcl

     文件      22148  2019-07-21 21:46  IAR\Debug\Obj\hal.r43

     文件     323350  2019-07-21 21:45  IAR\Debug\Obj\low_level_init.pbi

     文件      10567  2014-08-01 23:11  IAR\Debug\Obj\low_level_init.pbi.cout

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

评论

共有 条评论