代码搜索:bootLoader 开发教程
找到约 10,000 项符合「bootLoader 开发教程」的源代码
代码结果 10,000
www.eeworm.com/read/153981/11996907
axf bootloader.axf
www.eeworm.com/read/153981/11996911
mcp bootloader.mcp
www.eeworm.com/read/255699/12064172
txt bootloader.txt
--------------------------------------------------------------------------------
看了上面有这么多老兄的讨论,就想起一年前我也是一头雾水地
扎在ti的文档里查bootloader的资料,我当时用的还是C542芯片
,虽然ti把它的bootloader吹得那么牛,但是我就是用不起来,后
来只好痛下决心自己写一
www.eeworm.com/read/152785/12084339
lds bootloader.lds
OUTPUT_FORMAT(elf32-sh)
INPUT(bootloader.o)
MEMORY
{
/* the boot ROM uses IRAM at 400-430, stay away and start at 500 */
IRAM : ORIGIN = 0x0FFFF500, LENGTH = 0xA00
/* and leave some room for stack
www.eeworm.com/read/152785/12084343
c bootloader.c
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* S
www.eeworm.com/read/152785/12084346
h bootloader.h
#ifndef NULL
#define NULL ((void*)0)
#endif
#define TRUE 1
#define FALSE 0
// scalar types
typedef unsigned char UINT8;
typedef unsigned short UINT16;
typedef unsigned long UINT32;
typedef int BOO
www.eeworm.com/read/152785/12084638
lds bootloader.lds
OUTPUT_FORMAT(elf32-sh)
INPUT(bootloader.o)
MEMORY
{
/* the boot ROM uses IRAM at 400-430, stay away and start at 500 */
IRAM : ORIGIN = 0x0FFFF500, LENGTH = 0xA00
/* and leave some room for stack
www.eeworm.com/read/152785/12084644
c bootloader.c
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* S
www.eeworm.com/read/152785/12084647
h bootloader.h
#ifndef NULL
#define NULL ((void*)0)
#endif
#define TRUE 1
#define FALSE 0
// scalar types
typedef unsigned char UINT8;
typedef unsigned short UINT16;
typedef unsigned long UINT32;
typedef int BOO
www.eeworm.com/read/254429/12137002