initial commit

This commit is contained in:
2022-10-23 23:45:43 -07:00
commit e190fa5193
6450 changed files with 8626944 additions and 0 deletions
@@ -0,0 +1,253 @@
//*****************************************************************************
//
//! @file itm_printf.c
//!
//! @brief Example that uses the ITM interface for printf.
//!
//! This example walks through the ASCII table (starting at character 033('!')
//! and ending on 126('~')) and prints the character to the ARM ITM. This output
//! can be decoded by running a terminal emulator (e.g. SEGGER J-Link SWO Viewer)
//! and configuring the console for SWO at 1M Baud. This example works by
//! configuring a timer and printing a new character after ever interrupt and
//! sleeps in between timer interrupts.
//
//*****************************************************************************
//*****************************************************************************
//
// Copyright (c) 2020, Ambiq Micro
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its
// contributors may be used to endorse or promote products derived from this
// software without specific prior written permission.
//
// Third party software included in this distribution is subject to the
// additional license terms as defined in the /docs/licenses directory.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 THE COPYRIGHT HOLDER OR CONTRIBUTORS 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.
//
// This is part of revision 2.4.2 of the AmbiqSuite Development Package.
//
//*****************************************************************************
#include "am_mcu_apollo.h"
#include "am_bsp.h"
#include "am_util.h"
//*****************************************************************************
//
// Timer configurations.
//
//*****************************************************************************
am_hal_ctimer_config_t g_sTimer3 =
{
// Don't link timers.
0,
// Set up Timer0A.
(AM_HAL_CTIMER_FN_REPEAT |
AM_HAL_CTIMER_INT_ENABLE |
AM_HAL_CTIMER_LFRC_512HZ),
// No configuration for Timer0B.
0,
};
//*****************************************************************************
//
// Init function for Timer A0.
//
//*****************************************************************************
void
timerA0_init(void)
{
uint32_t ui32Period;
//
// Enable the LFRC.
//
am_hal_clkgen_osc_start(AM_HAL_CLKGEN_OSC_LFRC);
//
// Set up timer A0.
//
am_hal_ctimer_clear(0, AM_HAL_CTIMER_TIMERA);
am_hal_ctimer_config(0, &g_sTimer3);
//
// With LFRC running at 512 Hz, set up a print rate of 32 Hz.
// ui32Period = 8: ~64 Hz print rate
// ui32Period = 16: ~32 Hz print rate
// ui32Period = 32: ~16 Hz print rate
//
ui32Period = 16;
am_hal_ctimer_period_set(0, AM_HAL_CTIMER_TIMERA, ui32Period,
(ui32Period >> 1));
//
// Clear the timer Interrupt
//
am_hal_ctimer_int_clear(AM_HAL_CTIMER_INT_TIMERA0);
}
//*****************************************************************************
//
// Timer Interrupt Service Routine (ISR)
//
//*****************************************************************************
void
am_ctimer_isr(void)
{
//
// Clear TimerA0 Interrupt (write to clear).
//
am_hal_ctimer_int_clear(AM_HAL_CTIMER_INT_TIMERA0);
}
//*****************************************************************************
//
// Main function.
//
//*****************************************************************************
int
main(void)
{
uint32_t i;
//
// Set the clock frequency.
//
am_hal_clkgen_sysclk_select(AM_HAL_CLKGEN_SYSCLK_MAX);
//
// Set the default cache configuration
//
am_hal_cachectrl_enable(&am_hal_cachectrl_defaults);
//
// Configure the board for low power operation.
//
am_bsp_low_power_init();
//
// Initialize the printf interface for ITM/SWO output.
//
am_util_stdio_printf_init((am_util_stdio_print_char_t) am_bsp_itm_string_print);
//
// Initialize the SWO GPIO pin
//
am_bsp_pin_enable(ITM_SWO);
//
// Enable the ITM.
//
am_hal_itm_enable();
//
// Enable debug printf messages using ITM on SWO pin
//
am_bsp_debug_printf_enable();
//
// Print the banner.
//
am_util_stdio_terminal_clear();
am_util_stdio_printf("ITM Printf Example\n");
//
// Introduce the string of characters.
//
am_util_stdio_printf("\n\tBeginning ASCII walk through:\n");
am_util_stdio_printf("\t");
//
// We are done printing. Disable debug printf messages on ITM.
//
am_bsp_debug_printf_disable();
//
// TimerA0 init.
//
timerA0_init();
//
// Enable the timer Interrupt.
//
am_hal_ctimer_int_enable(AM_HAL_CTIMER_INT_TIMERA0);
//
// Enable the timer interrupt in the NVIC.
//
am_hal_interrupt_enable(AM_HAL_INTERRUPT_CTIMER);
am_hal_interrupt_master_enable();
//
// Enable the timer.
//
am_hal_ctimer_start(0, AM_HAL_CTIMER_TIMERA);
//
// Loop forever writing chars to the stimulus register.
//
while (1)
{
for (i = '!'; i <= '~'; i++)
{
//
// Enable debug printf messages using ITM on SWO pin
//
am_bsp_debug_printf_enable();
//
// Walk through the ASCII table.
//
am_util_stdio_printf("%c", i);
//
// Disable debug printf messages using ITM on SWO pin
//
am_bsp_debug_printf_disable();
//
// Go to Deep Sleep to delay.
//
am_hal_sysctrl_sleep(AM_HAL_SYSCTRL_SLEEP_DEEP);
}
//
// Enable debug printf messages using ITM on SWO pin
//
am_bsp_debug_printf_enable();
//
// New line.
//
am_util_stdio_printf("\n\t");
//
// Disable debug printf messages using ITM on SWO pin
//
am_bsp_debug_printf_disable();
}
}