Lines Matching full:with
14 This port currently works with FreeRTOS kernel version 10.0.0.
22 extensions defined in the TIE language, with certain minimum
26 NOTE: It may be possible to build and run this with the open-source
32 'xclib' C runtime libraries distributed with Xtensa Tools, providing
39 with reentrancy then you can use any of these libraries.
48 - Timer interrupt option with at least one interruptible timer.
52 most 'Xtensa T1050' processors are configured with XEA2.
57 with the Xtensa Tools. This provides the board clock frequency and basic
59 is not a tradtional RTOS "board support package" with RTOS specific
81 All source is provided along with a Makefile that works for any host
124 can also build to run on a raw Xtensa core with no board support, a
127 is easier to debug with, then move to a board if/when you need to test
136 a subdirectory so several core and platform builds can co-exist even with
147 You can use xt-make, which comes with the Xtensa Tools, to run the
177 After the library has been built, you must link your application with this
185 simulator (ISS) or a supported evaluation board programmed with your
217 This compiles the examples and links them with the FreeRTOS library
224 To build your application with thread-safe C library support, you
227 without interference with other tasks (it is not safe for interrupt
235 line. Note that the default xtensa_config.h provided with this port does
257 To work around this, the makefiles supplied with this port will copy the
273 (the --turbo option is only available with Xtensa Tools version 7 or later).
283 with the correct configuration and is set up to boot from RAM and debug
285 emulator to the serial port on the board with settings as described in
295 with the gdbio LSP. Refer to Xtensa tools documentation for details.
333 Beginning with port version 1.2, the port uses a separate interrupt stack
356 -x assembler-with-cpp Passes .s and .S files through C preprocessor.
357 -Dmacro Define a preprocessor macro with no value.
358 -Dmacro=value Define a preprocessor macro with a value.
368 supplied with Xtensa Tools. Default ON.
371 beginning with "XT_".
415 Enabling this will prioritize interrupts with
416 higher bit numbers over those with lower bit
426 purpose registers a0-a15 are used: the standard windowed ABI use with
498 By default FreeRTOS for Xtensa is built with debug (-g) and without
504 Maximum performance is achieved with -O3 -ipa, but that might increase
508 Minimal footprint is achieved by optimizing for space with -Os, at the
511 The Xtensa architecture port-specific assembly files are coded with no
512 file-scope labels inside functions (all labels inside functions begin with
513 ".L"). This allows a profiler to accurately associate an address with a
539 with specific vector locations.) The handlers provided use conditional
560 The places where application handlers should be inserted are tagged with
580 and interrupt in more detail. Many have nothing to do with FreeRTOS but
602 the high-priority class of interrupts (which do not interact with
649 High priority handlers may not directly interact with FreeRTOS at all,
688 The windowed ABI specifies that executing this instruction with
722 which then takes control and interacts with any attached debugger.
754 of interrupts works only with this method. See xtensa_api.h for details.