⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 scat_st71x_ram.scf

📁 This project should serve as an "easy start" with embOS. All pathes are relative to the project fil
💻 SCF
字号:
;;**********************************************************************
;;*                SEGGER MICROCONTROLLER SYSTEME GmbH                 *
;;*        Solutions for real time microcontroller applications        *
;;**********************************************************************
;;*                                                                    *
;;*        (C) 2002-2004  SEGGER Microcontroller Systeme GmbH          *
;;*                                                                    *
;;*        www.segger.com         Support: support@segger.com          *
;;*                                                                    *
;;**********************************************************************
;;
;;----------------------------------------------------------------------
;;File        : scat_STR71x_RAM.scf
;;Purpose     : Scatter file for use with ST STR71x to run in internal RAM
;;---------------------------END-OF-HEADER------------------------------
;;

;
; This scatterloading descriptor file defines:
; one load region (STR71x) and a number of execution regions
; (FLASH & XRAM etc.)
;
;
;
; The region HEAP is used to locate the bottom of the heap
; The heap will grow up from this address
;
; The region STACKS is used to locate the top of the memory used to store
; the stacks for each mode. The stacks will grow down from this address
;

STR71x 0x20000000 0x1000000
{
;          Addr.         Flags          Len
    FLASH 0x20000000                0x0000AFFF
    {
        vectors.o (Vect, +First)
        init*.o (Init)
        * (+RO)
    }

;          Addr.         Flags          Len
    XRAM 0x2000B000                 0x00005000
    {
        * (+RW,+ZI)
    }

;          Addr.         Flags          Len
    HEAP   +0x0         UNINIT
    {
        heap.o (+ZI)
    }

;            Addr.       Flags          Len
    STACKS +0x1000       UNINIT
    {
        stack.o (+RW, +ZI)
    }


}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -