mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-13 16:27:43 -04:00
* Demo/CORTEX_LM3S6965_GCC_QEMU: Trim trailing spaces & lines * Demo/CORTEX_LM3S6965_GCC_QEMU: Fix Eclipse build 1/2 (examples) It was trying to build the examples, which pulled in symbols such as `_write` that are not implemented. * Demo/CORTEX_LM3S6965_GCC_QEMU: Fix Eclipse build 1/2 (discard .ARM.exidx) Somewhere along the line now there is the .ARM.exidx section in the files, we don't use exceptions so can just discard it. * Demo/CORTEX_LM3S6965_GCC_QEMU: Add CMake * Debug/CORTEX_LM3S6965_GCC_QEMU: Fix Qemu startup It was tripping on port.c /* Check that the maximum system call priority is nonzero after * accounting for the number of priority bits supported by the * hardware. A priority of 0 is invalid because setting the BASEPRI * register to 0 unmasks all interrupts, and interrupts with priority 0 * cannot be masked using BASEPRI. * See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */ configASSERT( ucMaxSysCallPriority ); Inspecting the value ucMaxPriorityValue gave 0xE0, and setting it to 0xE0 complains about overflow in FreeRTOS/Demo/CORTEX_LM3S6965_GCC_QEMU/LocalDemoFiles/IntQueueTimer.c:57 /* Shift left 5 as only the top 3 bits are implemented. */ IntPrioritySet( INT_TIMER2A, configMAX_SYSCALL_INTERRUPT_PRIORITY + ( 1 << 5 ) ); * Add qemu options to run in headless mode Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com> --------- Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com> Co-authored-by: Gaurav-Aggarwal-AWS <33462878+aggarg@users.noreply.github.com> Co-authored-by: Gaurav Aggarwal <aggarg@amazon.com>
65 lines
1.8 KiB
Text
65 lines
1.8 KiB
Text
/******************************************************************************
|
|
*
|
|
* standalone.ld - Linker script for applications using startup.c and
|
|
* DriverLib.
|
|
*
|
|
* Copyright (c) 2005-2007 Luminary Micro, Inc. All rights reserved.
|
|
*
|
|
* Software License Agreement
|
|
*
|
|
* Luminary Micro, Inc. (LMI) is supplying this software for use solely and
|
|
* exclusively on LMI's microcontroller products.
|
|
*
|
|
* The software is owned by LMI and/or its suppliers, and is protected under
|
|
* applicable copyright laws. All rights are reserved. Any use in violation
|
|
* of the foregoing restrictions may subject the user to criminal sanctions
|
|
* under applicable laws, as well as to civil liability for the breach of the
|
|
* terms and conditions of this license.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED
|
|
* OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
|
|
* LMI SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR
|
|
* CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
|
|
*
|
|
* This is part of revision 1392 of the Stellaris Peripheral Driver Library.
|
|
*
|
|
*****************************************************************************/
|
|
|
|
MEMORY
|
|
{
|
|
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 256K
|
|
SRAM (rwx) : ORIGIN = 0x20000000, LENGTH = 64K
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
KEEP(*(.isr_vector))
|
|
*(.text*)
|
|
*(.rodata*)
|
|
_etext = .;
|
|
} > FLASH
|
|
|
|
.data : AT (ADDR(.text) + SIZEOF(.text))
|
|
{
|
|
_data = .;
|
|
*(vtable)
|
|
*(.data*)
|
|
_edata = .;
|
|
} > SRAM
|
|
|
|
.bss :
|
|
{
|
|
_bss = .;
|
|
*(.bss*)
|
|
*(COMMON)
|
|
_ebss = .;
|
|
} > SRAM
|
|
|
|
/DISCARD/ :
|
|
{
|
|
*(.ARM.exidx)
|
|
}
|
|
}
|