Welcome![Sign In][Sign Up]
Location:
Search - bootloader jump

Search list

[assembly languagepxa255

Description: pxa255,bootloaer ,从初始化中断到GPIO口,最后到跳转main函数。-pxa255, bootloaer, from the interruption to the GPIO port initialization, and finally to the main function of Jump.
Platform: | Size: 1740800 | Author: seven | Hits:

[BooksARMLinuxv1

Description: 在内核运行之前需要系统引导程序(Bootloader)完成加载内核和一些辅助性的工作,然后跳转到内核代码的起始地址并执行。ARM.Linux启动分析v1.doc-In the kernel needs to run before the system boot process (Bootloader) finished loading the kernel and some auxiliary work, and then Jump to the start address of kernel code and implement. Start ARM.Linux analysis v1.doc
Platform: | Size: 51200 | Author: dzq | Hits:

[SCMBSL

Description: 用于sst89x516(sst89x564)的Bootloader,使用超级终端用xmodem协议下载,(只支持bin文件的下载).在晶振为11.0592,未开双倍速的情况下,波特率为57600bps.在超级终端中长按 Z 键并对系统上电进入下载,否则500ms后跳转至block0中程序执行,可代替原SST中的BSL.可扩展实现远程升级-For sst89x516 (sst89x564) the Bootloader, use HyperTerminal to download using xmodem protocol, (only support bin file download). 11.0592 in the crystal to not open the case of double speed, baud rate is 57600bps. In the super-terminal long by ' Z' button and enter the power system to download, otherwise jump to block0 after 500ms in the procedures can be alternative to the original SST in the BSL. scalability remote upgrade
Platform: | Size: 8192 | Author: chenting | Hits:

[Windows DevelopFBSLo

Description: 用于sst89x516(sst89x564)的Bootloader,使用超级终端用xmodem协议下载,(只支持bin文件的下载).在晶振为11.0592,未开双倍速的的情况下,波特率为57600bps.在超级终端中长按 Z 键并对系统上电进入下载,否则500ms后跳转至block0中程序执行,可代替原SST中的BSL.可扩展实现远程升级 -For Bootloader of sst89x516 (sst89x564), using HyperTerminal with the xmodem protocol download (only supports a bin file download). In the crystal is 11.0592, unopened double the speed of the case, the baud rate is 57600bps. HyperTerminal long press the Z key and the system power-on to download or 500ms after the jump to block0 program implementation, instead of the original SST BSL scalable remote upgrade
Platform: | Size: 7168 | Author: 反弹 | Hits:

[Other Embeded programpointer-jump

Description: bootloader中检测试标志位决定启动哪个区域的代码 复制中断向量表并重新映射-pointer jump
Platform: | Size: 1024 | Author: sun | Hits:

[Linux drivermy_bootloader

Description: arm中bootloader的编写,初始化硬件,把内核从NAND FLASH读到SDRAM,跳转执行内核-arm in writing the bootloader to initialize the hardware, the kernel reads from NAND FLASH SDRAM, set the "parameters to be passed to the kernel," jump execution cores
Platform: | Size: 13312 | Author: 孙魁 | Hits:

[ARM-PowerPC-ColdFire-MIPSSTM32F103boot

Description: STM32启动过程解析  1、  通过boot引脚设置可以将中断向量表定位于SRAM区,即起始地址为0x2000000,同时复位后PC指针位于0x2000000处;  2、  通过boot引脚设置可以将中断向量表定位于FLASH区,即起始地址为0x8000000,同时复位后PC指针位于0x8000000处;  3、  通过boot引脚设置可以将中断向量表定位于内置Bootloader区,本文不对这种情况做论述;          而Cortex-M3内核规定,起始地址必须存放堆顶指针,而第二个地址则必须存放复位中断入口向量地址,这样在Cortex-M3内核复位后,会自动从  起始地址的下一个32位空间取出复位中断入口向量,跳转执行复位中断服务程序。对比ARM7/ARM9内核,Cortex-M3内核则是固定了中断向量表  的位置而起始地址是可变化的。          有了上述准备后,下面以STM32的2.02固件库提供的启动文件“stm32f10x_vector.s”为模板,对STM32的启动过程做一个简要而全面的解析。-STM32 resolve a boot process, the boot pin set interrupt vector table can be located in the SRAM area, namely the start address is 0x2000000, while the post-PC pointer is reset at 0x2000000 2, through the boot pin settings can be FLASH interrupt vector table located in the area, namely the start address is 0x8000000, while the pointer is reset PC 0x8000000 place 3, through the boot pin set interrupt vector table can be located in the built-in Bootloader district, this paper does not do this discourse while Cortex-M3 core provides the starting address must be kept top of the heap pointer, while the second addresses must be stored reset interrupt vector address entry, so that the Cortex-M3 core is reset, it will automatically starting address of the next 32 Remove the reset interrupt entry vector space, Jump perform a reset interrupt service routine. Contrast ARM7/ARM9 core, Cortex-M3 core is fixed interrupt vector table start address of the position can be varied. With these preparat
Platform: | Size: 90112 | Author: song | Hits:

[ARM-PowerPC-ColdFire-MIPSSTM32F103boot

Description: STM32启动过程解析 1、 通过boot引脚设置可以将中断向量表定位于SRAM区,即起始地址为0x2000000,同 时复位后PC指针位于0x2000000处; 2、 通过boot引脚设置可以将中断向量表定位于FLASH区,即起始地址为0x8000000,同 时复位后PC指针位于0x8000000处; 3、 通过boot引脚设置可以将中断向量表定位于内置Bootloader区,本文不对这种情况做 论述; 而Cortex-M3内核规定,起始地址必须存放堆顶指针,而第二个地址则必须存放复位中 断入口向量地址,这样在Cortex-M3内核复位后,会自动从 起始地址的下一个32位空间取 出复位中断入口向量,跳转执行复位中断服务程序。对比ARM7/ARM9内核,Cortex-M3 内核则是固定了中断向量表 的位置而起始地址是可变化的。 有了上述准备后,下面以STM32的2.02固件库提供的启动文件“stm32f10x_vector.s”为 模板,对STM32的启动过程做一个简要而全面的解析。 -STM32 resolve a boot process, the boot pin set interrupt vector table can be located in the SRAM area, namely the start address is 0x2000000, while the post-PC pointer is reset at 0x2000000 2, through the boot pin set interrupt vector table can be positioned in the FLASH area, namely the start address is 0x8000000, while the pointer is reset PC 0x8000000 place 3, through the boot pin set interrupt vector table can be located in the built-in Bootloader area, this article discusses the right to do this while the Cortex-M3 kernel provides the starting address must be kept top of the heap pointer, while the second addresses must be stored reset interrupt vector address entry, so that the Cortex-M3 core is reset, it will automatically start the next 32-bit address space out reset interrupt entry vector, Jump perform a reset interrupt service routine. Contrast ARM7/ARM9 core, Cortex-M3 core is fixed interrupt vector table start address of the position can be varied. With these preparation
Platform: | Size: 4096 | Author: song | Hits:

[transportation applicationssizhou

Description: 四周飞行器控制原理代码。,参考Atmel 的TWI 例子修改的,执行的功能包括BootLoader 签名验证,上传代码的CRC16 校验验证,跳转到用户区等功能-Four weeks aircraft control theory code. Reference to examples of Atmel TWI modify, perform the functions including BootLoader signature verification, upload code CRC16 checksum verification, jump to the user area and other features
Platform: | Size: 6144 | Author: 张明 | Hits:

[ARM-PowerPC-ColdFire-MIPSSTM32F103NorFlash-Or-SRM-CodeExecute

Description: KEIL开发STM32F103程序,在片外NorFlash或者是SRAM中运行。 STM32F103有三种启动方式,但是都无法直接在NorFlash或者片外SRAM启动,因此需要BootLoader,然后再执行跳转。 附件里有三个文件夹,一个是BOOT,一个是NorFlash应用程序,一个是SRAM应用程序,都是采用KEIL3.8编译。 本次选用BootLoader放在片内Flash,启动后配置FSMC_SRAM、以及FSMC_NOR,然后执行跳转到片外运行。 -KEIL development STM32F103 program, or SRAM chip NorFlash run. STM32F103 There are three ways to start, but they are not directly or SRAM chip start NorFlash, requiring BootLoader, and then perform a jump. There are three folders in Annex A is BOOT, one is NorFlash application, an application is SRAM, and are based KEIL3.8 compilation. The choice of BootLoader on-chip Flash, after the startup configuration FSMC_SRAM, and FSMC_NOR, then execution jumps to the chip to run.
Platform: | Size: 624640 | Author: 王伟 | Hits:

[Program dociap-app

Description: 单片机avr如何实现IAP到APP用户程序的跳转介绍,如何定位bootloader区及该款芯片flash区的特点。-introduce microcpu avr how to realize IAP to APP jump and it s flash area(NRWW and RWW)
Platform: | Size: 113664 | Author: sun | Hits:

[Software EngineeringIAP-Bootloader-V1.0

Description: ,STM32F103实现APP和IAP程序IAP段通过串口终端更新APP程序-The STM32F103 APP and IAP block to jump back and forth through a memory value judgments, the IAP segment by the serial terminal to update the APP program.
Platform: | Size: 2906112 | Author: ZGF | Hits:

[Linux-Unixboot

Description: The worlds second smallest bootloader. Set r0-r2, then jump to kernel.
Platform: | Size: 5120 | Author: kendrcs | Hits:

[OtherOBD_Bootloader源程序_V1.0_2017.12.8

Description: 远程升级boot代码跳转部分,GPRS协议部分暂时不用理会,关键是BootLoader代码才是跳转部分,实现flash中A区,B区的切换(Remote upgrading boot code jump part, GPRS protocol part temporarily ignored, the key is BootLoader code is the jump part, realize Flash in A area, B area switch.)
Platform: | Size: 7401472 | Author: FIRE_7 | Hits:

[stm32-bootloader

Description: stm32f0增加bootloader和env分区,env分区(a bootloader for stm32f0 series, update,upload or jump to the app with flag in env sector)
Platform: | Size: 3138560 | Author: 841701175 | Hits:

CodeBus www.codebus.net