123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- /*********************************************************************
- * SEGGER MICROCONTROLLER GmbH & Co. KG *
- * Solutions for real time microcontroller applications *
- **********************************************************************
- * *
- * (c) 2015 - 2016 SEGGER Microcontroller GmbH & Co. KG *
- * *
- * www.segger.com Support: support@segger.com *
- * *
- **********************************************************************
- * *
- * SEGGER SystemView * Real-time application analysis *
- * *
- **********************************************************************
- * *
- * All rights reserved. *
- * *
- * * This software may in its unmodified form be freely redistributed *
- * in source form. *
- * * The source code may be modified, provided the source code *
- * retains the above copyright notice, this list of conditions and *
- * the following disclaimer. *
- * * Modified versions of this software in source or linkable form *
- * may not be distributed without prior consent of SEGGER. *
- * *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS "AS IS" AND *
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, *
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
- * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL *
- * SEGGER Microcontroller BE LIABLE FOR ANY DIRECT, INDIRECT, *
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES *
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS *
- * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS *
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, *
- * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING *
- * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS *
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
- * *
- **********************************************************************
- * *
- * SystemView version: V2.40 *
- * *
- **********************************************************************
- -------------------------- END-OF-HEADER -----------------------------
- File : SEGGER_SYSVIEW_Conf.h
- Purpose : SEGGER SystemView configuration.
- Revision: $Rev: 3734 $
- */
- #ifndef SEGGER_SYSVIEW_CONF_H
- #define SEGGER_SYSVIEW_CONF_H
- /*********************************************************************
- *
- * Defines, fixed
- *
- **********************************************************************
- */
- //
- // Constants for known core configuration
- //
- #define SEGGER_SYSVIEW_CORE_OTHER 0
- #define SEGGER_SYSVIEW_CORE_CM0 1 // Cortex-M0/M0+/M1
- #define SEGGER_SYSVIEW_CORE_CM3 2 // Cortex-M3/M4/M7
- #define SEGGER_SYSVIEW_CORE_RX 3 // Renesas RX
- #if (defined __SES_ARM) || (defined __CROSSWORKS_ARM) || (defined __GNUC__)
- #ifdef __ARM_ARCH_6M__
- #define SEGGER_SYSVIEW_CORE SEGGER_SYSVIEW_CORE_CM0
- #elif (defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7EM__))
- #define SEGGER_SYSVIEW_CORE SEGGER_SYSVIEW_CORE_CM3
- #endif
- #elif defined(__ICCARM__)
- #if (defined (__ARM6M__) && (__CORE__ == __ARM6M__))
- #define SEGGER_SYSVIEW_CORE SEGGER_SYSVIEW_CORE_CM0
- #elif ((defined (__ARM7M__) && (__CORE__ == __ARM7M__)) || (defined (__ARM7EM__) && (__CORE__ == __ARM7EM__)))
- #define SEGGER_SYSVIEW_CORE SEGGER_SYSVIEW_CORE_CM3
- #endif
- #elif defined(__CC_ARM)
- #if (defined(__TARGET_ARCH_6S_M))
- #define SEGGER_SYSVIEW_CORE SEGGER_SYSVIEW_CORE_CM0
- #elif (defined(__TARGET_ARCH_7_M) || defined(__TARGET_ARCH_7E_M))
- #define SEGGER_SYSVIEW_CORE SEGGER_SYSVIEW_CORE_CM3
- #endif
- #elif defined(__ICCRX__)
- #define SEGGER_SYSVIEW_CORE SEGGER_SYSVIEW_CORE_RX
- #elif defined(__RX)
- #define SEGGER_SYSVIEW_CORE SEGGER_SYSVIEW_CORE_RX
- #endif
- #ifndef SEGGER_SYSVIEW_CORE
- #define SEGGER_SYSVIEW_CORE SEGGER_SYSVIEW_CORE_OTHER
- #endif
- /*********************************************************************
- *
- * Defines, configurable
- *
- **********************************************************************
- */
- /*********************************************************************
- *
- * SystemView buffer configuration
- */
- #define SEGGER_SYSVIEW_RTT_BUFFER_SIZE 1024 // Number of bytes that SystemView uses for the buffer.
- #define SEGGER_SYSVIEW_RTT_CHANNEL 1 // The RTT channel that SystemView will use. 0: Auto selection
- #define SEGGER_SYSVIEW_USE_STATIC_BUFFER 1 // Use a static buffer to generate events instead of a buffer on the stack
- #define SEGGER_SYSVIEW_POST_MORTEM_MODE 0 // 1: Enable post mortem analysis mode
- /*********************************************************************
- *
- * SystemView timestamp configuration
- */
- #if SEGGER_SYSVIEW_CORE == SEGGER_SYSVIEW_CORE_CM3
- #define SEGGER_SYSVIEW_GET_TIMESTAMP() (*(U32 *)(0xE0001004)) // Retrieve a system timestamp. Cortex-M cycle counter.
- #define SEGGER_SYSVIEW_TIMESTAMP_BITS 32 // Define number of valid bits low-order delivered by clock source
- #else
- #define SEGGER_SYSVIEW_GET_TIMESTAMP() SEGGER_SYSVIEW_X_GetTimestamp() // Retrieve a system timestamp via user-defined function
- #define SEGGER_SYSVIEW_TIMESTAMP_BITS 32 // Define number of valid bits low-order delivered by SEGGER_SYSVIEW_X_GetTimestamp()
- #endif
- /*********************************************************************
- *
- * SystemView Id configuration
- */
- #define SEGGER_SYSVIEW_ID_BASE 0x10000000 // Default value for the lowest Id reported by the application. Can be overridden by the application via SEGGER_SYSVIEW_SetRAMBase(). (i.e. 0x20000000 when all Ids are an address in this RAM)
- #define SEGGER_SYSVIEW_ID_SHIFT 2 // Number of bits to shift the Id to save bandwidth. (i.e. 2 when Ids are 4 byte aligned)
- /*********************************************************************
- *
- * SystemView interrupt configuration
- */
- #if SEGGER_SYSVIEW_CORE == SEGGER_SYSVIEW_CORE_CM3
- #define SEGGER_SYSVIEW_GET_INTERRUPT_ID() ((*(U32 *)(0xE000ED04)) & 0x1FF) // Get the currently active interrupt Id. (i.e. read Cortex-M ICSR[8:0] = active vector)
- #elif SEGGER_SYSVIEW_CORE == SEGGER_SYSVIEW_CORE_CM0
- #define SEGGER_SYSVIEW_GET_INTERRUPT_ID() ((*(U32 *)(0xE000ED04)) & 0x3F) // Get the currently active interrupt Id. (i.e. read Cortex-M ICSR[5:0] = active vector)
- #else
- #define SEGGER_SYSVIEW_GET_INTERRUPT_ID() SEGGER_SYSVIEW_X_GetInterruptId() // Get the currently active interrupt Id from the user-provided function.
- #endif
- #endif // SEGGER_SYSVIEW_CONF_H
- /*************************** End of file ****************************/
|