mirror of
https://github.com/hathach/tinyusb.git
synced 2025-04-03 07:21:36 +00:00
finshed upgrading lpc43xx cmsis
This commit is contained in:
parent
8a8537d7e5
commit
ad5ce98c02
@ -1,10 +1,10 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
* $Id$ system_lpc43xx.c 2011-06-02
|
* $Id$ system_lpc43xx.c 2012-05-21
|
||||||
*//**
|
*//**
|
||||||
* @file system_lpc43xx.c
|
* @file system_lpc43xx.c
|
||||||
* @brief Cortex-M3 Device System Source File for NXP lpc43xx Series.
|
* @brief Cortex-M3 Device System Source File for NXP lpc43xx Series.
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
* @date 02. June. 2011
|
* @date 21. May. 2011
|
||||||
* @author NXP MCU SW Application Team
|
* @author NXP MCU SW Application Team
|
||||||
*
|
*
|
||||||
* Copyright(C) 2011, NXP Semiconductor
|
* Copyright(C) 2011, NXP Semiconductor
|
||||||
@ -21,9 +21,23 @@
|
|||||||
* notification. NXP Semiconductors also make no representation or
|
* notification. NXP Semiconductors also make no representation or
|
||||||
* warranty that such application will be suitable for the specified
|
* warranty that such application will be suitable for the specified
|
||||||
* use without further testing or modification.
|
* use without further testing or modification.
|
||||||
|
* Permission to use, copy, modify, and distribute this software and its
|
||||||
|
* documentation is hereby granted, under NXP Semiconductors'
|
||||||
|
* relevant copyright in the software, without fee, provided that it
|
||||||
|
* is used in conjunction with NXP Semiconductors microcontrollers. This
|
||||||
|
* copyright, permission, and disclaimer notice must appear in all copies of
|
||||||
|
* this code.
|
||||||
**********************************************************************/
|
**********************************************************************/
|
||||||
|
|
||||||
#include "LPC43xx.h"
|
#include "LPC43xx.h"
|
||||||
|
#if !defined(__CODE_RED)
|
||||||
|
#include "fpu_enable.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// CodeRed - call clock init code by default
|
||||||
|
#ifdef __CODE_RED
|
||||||
|
#include "lpc43xx_cgu.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------
|
/*----------------------------------------------------------------------------
|
||||||
Define clocks
|
Define clocks
|
||||||
@ -35,9 +49,7 @@
|
|||||||
*----------------------------------------------------------------------------*/
|
*----------------------------------------------------------------------------*/
|
||||||
uint32_t SystemCoreClock = __IRC; /*!< System Clock Frequency (Core Clock)*/
|
uint32_t SystemCoreClock = __IRC; /*!< System Clock Frequency (Core Clock)*/
|
||||||
|
|
||||||
#ifndef __CODE_RED
|
|
||||||
extern uint32_t getPC(void);
|
extern uint32_t getPC(void);
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize the system
|
* Initialize the system
|
||||||
@ -50,28 +62,80 @@ extern uint32_t getPC(void);
|
|||||||
*/
|
*/
|
||||||
void SystemInit (void)
|
void SystemInit (void)
|
||||||
{
|
{
|
||||||
SystemCoreClock = __IRC;
|
uint32_t org;
|
||||||
|
|
||||||
#ifdef __CODE_RED
|
#if !defined(__CODE_RED)
|
||||||
// CodeRed startup code will modify VTOR register to match
|
#if defined(CORE_M4) && defined(USE_FPU)
|
||||||
// when code has been linked to run from.
|
fpuEnable();
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(CORE_M0)
|
||||||
|
// Set up Cortex_M3 or M4 VTOR register to point to vector table
|
||||||
|
// This code uses a toolchain defined symbol to locate the vector table
|
||||||
|
// If this is not completed, interrupts are likely to cause an exception.
|
||||||
|
unsigned int * pSCB_VTOR = (unsigned int *) 0xE000ED08;
|
||||||
|
#if defined(__IAR_SYSTEMS_ICC__)
|
||||||
|
extern void *__vector_table;
|
||||||
|
|
||||||
// Check whether we are running from external flash
|
org = *pSCB_VTOR = (unsigned int)&__vector_table;
|
||||||
if (SCB->VTOR == 0x1C000000)
|
#elif defined(__CODE_RED)
|
||||||
/*Enable Buffer for External Flash*/
|
extern void *g_pfnVectors;
|
||||||
LPC_EMC->STATICCONFIG0 |= 1<<19;
|
|
||||||
|
|
||||||
// Call clock initialisation code
|
// CodeRed - correct to assign address of variable not contents
|
||||||
CGU_Init();
|
// org = *pSCB_VTOR = (unsigned int)g_pfnVectors;
|
||||||
|
org = *pSCB_VTOR = (unsigned int)&g_pfnVectors;
|
||||||
|
#elif defined(__ARMCC_VERSION)
|
||||||
|
extern void *__Vectors;
|
||||||
|
|
||||||
|
org = *pSCB_VTOR = (unsigned int)&__Vectors;
|
||||||
#else
|
#else
|
||||||
|
#error Unknown compiler
|
||||||
#if defined(CORE_M4) || defined(CORE_M3)
|
#endif
|
||||||
// Enable VTOR register to point to vector table
|
#else
|
||||||
SCB->VTOR = getPC() & 0xFFF00000;
|
// Cortex M0?
|
||||||
|
#error Cannot configure VTOR on Cortex_M0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// LPC18xx/LPC43xx ROM sets the PLL to run from IRC and drive the part
|
||||||
|
// at 96 MHz out of reset
|
||||||
|
SystemCoreClock = 96000000;
|
||||||
|
|
||||||
|
// In case we are running from external flash, (booted by boot rom)
|
||||||
|
// We enable the EMC buffer to improve performance.
|
||||||
|
if(org == 0x1C000000)
|
||||||
|
{
|
||||||
/*Enable Buffer for External Flash*/
|
/*Enable Buffer for External Flash*/
|
||||||
LPC_EMC->STATICCONFIG0 |= 1<<19;
|
LPC_EMC->STATICCONFIG0 |= 1<<19;
|
||||||
|
}
|
||||||
|
|
||||||
|
// CodeRed - call clock init code by default
|
||||||
|
#ifdef __CODE_RED
|
||||||
|
// Call clock initialisation code
|
||||||
|
CGU_Init();
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// In case we are running from internal flash, we configure the flash
|
||||||
|
// accelerator. This is a conservative value that should work up to 204
|
||||||
|
// MHz on the LPC43xx or 180 MHz on the LPC18xx. This value may change
|
||||||
|
// as the chips are characterized and should also change based on
|
||||||
|
// core clock speed.
|
||||||
|
#define FLASH_ACCELERATOR_SPEED 6
|
||||||
|
#ifdef INTERNAL_FLASH
|
||||||
|
{
|
||||||
|
uint32_t *MAM,t;
|
||||||
|
|
||||||
|
// Set up flash controller for both banks
|
||||||
|
// Bank A
|
||||||
|
MAM = (uint32_t *)(LPC_CREG_BASE + 0x120);
|
||||||
|
t=*MAM;
|
||||||
|
t &= ~(0xF<<12);
|
||||||
|
*MAM = t | (FLASH_ACCELERATOR_SPEED<<12);
|
||||||
|
// Bank B
|
||||||
|
MAM = (uint32_t *)(LPC_CREG_BASE + 0x124);
|
||||||
|
t=*MAM;
|
||||||
|
t &= ~(0xF<<12);
|
||||||
|
*MAM = t | (FLASH_ACCELERATOR_SPEED<<12);
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -90,7 +90,7 @@
|
|||||||
<sourceEntries>
|
<sourceEntries>
|
||||||
<entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="freertos/freertos/Source/portable/GCC/ARM_CM4F"/>
|
<entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="freertos/freertos/Source/portable/GCC/ARM_CM4F"/>
|
||||||
<entry excluding="heap_2.c|heap_3.c|heap_4.c" flags="VALUE_WORKSPACE_PATH" kind="sourcePath" name="freertos/freertos/Source/portable/MemMang"/>
|
<entry excluding="heap_2.c|heap_3.c|heap_4.c" flags="VALUE_WORKSPACE_PATH" kind="sourcePath" name="freertos/freertos/Source/portable/MemMang"/>
|
||||||
<entry excluding="bsp/lpc175x_6x|bsp/boards/embedded_artists/oem_base_board|freertos/freertoslpc/FreeRTOS_lpc43xx_m0_Tick.c|freertos/freertos/Source/portable|bsp/boards/EA4357|NGX|bsp/lpc13uxx|bsp/lpc11uxx" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/>
|
<entry excluding="bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/sdio.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_wwdt.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_timer.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_ssp.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_sdmmc.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_sdif.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_sct.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_rtc.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_rit.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_rgu.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_qei.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_pwr.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_nvic.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_mcpwm.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_lcd.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_i2s.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_gpdma.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_evrt.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_emc.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_dac.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_can.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_atimer.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_adc.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/LCDTerm.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/Font5x7.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/debug_frmwrk.c|bsp/lpc175x_6x|bsp/boards/embedded_artists/oem_base_board|freertos/freertoslpc/FreeRTOS_lpc43xx_m0_Tick.c|freertos/freertos/Source/portable|bsp/boards/EA4357|NGX|bsp/lpc13uxx|bsp/lpc11uxx" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/>
|
||||||
</sourceEntries>
|
</sourceEntries>
|
||||||
</configuration>
|
</configuration>
|
||||||
</storageModule>
|
</storageModule>
|
||||||
@ -751,7 +751,7 @@
|
|||||||
<sourceEntries>
|
<sourceEntries>
|
||||||
<entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="freertos/freertos/Source/portable/GCC/ARM_CM4F"/>
|
<entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="freertos/freertos/Source/portable/GCC/ARM_CM4F"/>
|
||||||
<entry excluding="heap_2.c|heap_3.c|heap_4.c" flags="VALUE_WORKSPACE_PATH" kind="sourcePath" name="freertos/freertos/Source/portable/MemMang"/>
|
<entry excluding="heap_2.c|heap_3.c|heap_4.c" flags="VALUE_WORKSPACE_PATH" kind="sourcePath" name="freertos/freertos/Source/portable/MemMang"/>
|
||||||
<entry excluding="bsp/lpc175x_6x|freertos/freertoslpc/FreeRTOS_lpc43xx_m0_Tick.c|freertos/freertos/Source/portable|bsp/boards/EA4357|NGX|bsp/lpc13uxx|bsp/lpc11uxx" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/>
|
<entry excluding="bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/sdio.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_wwdt.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_timer.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_ssp.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_sdmmc.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_sdif.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_sct.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_rtc.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_rit.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_rgu.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_qei.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_pwr.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_nvic.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_mcpwm.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_lcd.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_i2s.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_gpdma.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_evrt.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_emc.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_dac.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_can.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_atimer.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/lpc43xx_adc.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/LCDTerm.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/Font5x7.c|bsp/lpc43xx/CMSIS_LPC43xx_DriverLib/src/debug_frmwrk.c|bsp/lpc175x_6x|freertos/freertoslpc/FreeRTOS_lpc43xx_m0_Tick.c|freertos/freertos/Source/portable|bsp/boards/EA4357|NGX|bsp/lpc13uxx|bsp/lpc11uxx" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/>
|
||||||
</sourceEntries>
|
</sourceEntries>
|
||||||
</configuration>
|
</configuration>
|
||||||
</storageModule>
|
</storageModule>
|
||||||
|
@ -387,10 +387,10 @@
|
|||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<tvExp>0</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<Focus>0</Focus>
|
<Focus>0</Focus>
|
||||||
<ColumnNumber>48</ColumnNumber>
|
<ColumnNumber>34</ColumnNumber>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<TopLine>22</TopLine>
|
<TopLine>59</TopLine>
|
||||||
<CurrentLine>25</CurrentLine>
|
<CurrentLine>67</CurrentLine>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\src\main.c</PathWithFileName>
|
<PathWithFileName>..\src\main.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>main.c</FilenameWithoutPath>
|
<FilenameWithoutPath>main.c</FilenameWithoutPath>
|
||||||
@ -633,7 +633,7 @@
|
|||||||
|
|
||||||
<Group>
|
<Group>
|
||||||
<GroupName>tinyusb</GroupName>
|
<GroupName>tinyusb</GroupName>
|
||||||
<tvExp>1</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<cbSel>0</cbSel>
|
<cbSel>0</cbSel>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
@ -896,7 +896,7 @@
|
|||||||
<TopLine>0</TopLine>
|
<TopLine>0</TopLine>
|
||||||
<CurrentLine>0</CurrentLine>
|
<CurrentLine>0</CurrentLine>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\..\bsp\lpc43xx\CMSISv2p10_LPC43xx_DriverLib\src\lpc43xx_uart.c</PathWithFileName>
|
<PathWithFileName>..\..\bsp\lpc43xx\CMSIS_LPC43xx_DriverLib\src\lpc43xx_uart.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>lpc43xx_uart.c</FilenameWithoutPath>
|
<FilenameWithoutPath>lpc43xx_uart.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
@ -912,7 +912,7 @@
|
|||||||
<TopLine>0</TopLine>
|
<TopLine>0</TopLine>
|
||||||
<CurrentLine>0</CurrentLine>
|
<CurrentLine>0</CurrentLine>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\..\bsp\lpc43xx\CMSISv2p10_LPC43xx_DriverLib\src\lpc43xx_scu.c</PathWithFileName>
|
<PathWithFileName>..\..\bsp\lpc43xx\CMSIS_LPC43xx_DriverLib\src\lpc43xx_scu.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>lpc43xx_scu.c</FilenameWithoutPath>
|
<FilenameWithoutPath>lpc43xx_scu.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
@ -928,7 +928,7 @@
|
|||||||
<TopLine>0</TopLine>
|
<TopLine>0</TopLine>
|
||||||
<CurrentLine>0</CurrentLine>
|
<CurrentLine>0</CurrentLine>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\..\bsp\lpc43xx\CMSISv2p10_LPC43xx_DriverLib\src\lpc43xx_gpio.c</PathWithFileName>
|
<PathWithFileName>..\..\bsp\lpc43xx\CMSIS_LPC43xx_DriverLib\src\lpc43xx_gpio.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>lpc43xx_gpio.c</FilenameWithoutPath>
|
<FilenameWithoutPath>lpc43xx_gpio.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
@ -939,12 +939,12 @@
|
|||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<tvExp>0</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<Focus>0</Focus>
|
<Focus>0</Focus>
|
||||||
<ColumnNumber>31</ColumnNumber>
|
<ColumnNumber>0</ColumnNumber>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<TopLine>0</TopLine>
|
<TopLine>0</TopLine>
|
||||||
<CurrentLine>0</CurrentLine>
|
<CurrentLine>0</CurrentLine>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\..\bsp\lpc43xx\CMSISv2p10_LPC43xx_DriverLib\src\lpc43xx_cgu.c</PathWithFileName>
|
<PathWithFileName>..\..\bsp\lpc43xx\CMSIS_LPC43xx_DriverLib\src\lpc43xx_cgu.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>lpc43xx_cgu.c</FilenameWithoutPath>
|
<FilenameWithoutPath>lpc43xx_cgu.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
@ -960,7 +960,7 @@
|
|||||||
<TopLine>0</TopLine>
|
<TopLine>0</TopLine>
|
||||||
<CurrentLine>0</CurrentLine>
|
<CurrentLine>0</CurrentLine>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\..\bsp\lpc43xx\CMSISv2p10_LPC43xx_DriverLib\src\system_LPC43xx.c</PathWithFileName>
|
<PathWithFileName>..\..\bsp\lpc43xx\CMSIS_LPC43xx_DriverLib\src\system_LPC43xx.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>system_LPC43xx.c</FilenameWithoutPath>
|
<FilenameWithoutPath>system_LPC43xx.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
@ -976,7 +976,7 @@
|
|||||||
<TopLine>0</TopLine>
|
<TopLine>0</TopLine>
|
||||||
<CurrentLine>0</CurrentLine>
|
<CurrentLine>0</CurrentLine>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\..\bsp\lpc43xx\CMSISv2p10_LPC43xx_DriverLib\src\lpc43xx_i2c.c</PathWithFileName>
|
<PathWithFileName>..\..\bsp\lpc43xx\CMSIS_LPC43xx_DriverLib\src\lpc43xx_i2c.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>lpc43xx_i2c.c</FilenameWithoutPath>
|
<FilenameWithoutPath>lpc43xx_i2c.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user