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,215 @@
//*****************************************************************************
//
//! @file stimer.c
//!
//! @brief Example using a stimer with interrupts.
//!
//! Purpose: This example demonstrates how to setup the stimer for counting and
//! interrupts. It toggles LED 0 to 4 every interrupt, which is set for 1 sec.
//!
//! Printing takes place over the ITM at 1M Baud.
//!
//
//*****************************************************************************
//*****************************************************************************
//
// 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"
//*****************************************************************************
//
// Macro definitions
//
//*****************************************************************************
#define WAKE_INTERVAL_IN_MS 1000
#define XT_PERIOD 32768
#define WAKE_INTERVAL XT_PERIOD * WAKE_INTERVAL_IN_MS * 1e-3
//*****************************************************************************
//
// Globals
//
//*****************************************************************************
static uint32_t g_ui32Count = 0;
//*****************************************************************************
//
// Init function for Timer A0.
//
//*****************************************************************************
void
stimer_init(void)
{
//
// Enable compare A interrupt in STIMER
//
am_hal_stimer_int_enable(AM_HAL_STIMER_INT_COMPAREA);
//
// Enable the timer interrupt in the NVIC.
//
NVIC_EnableIRQ(STIMER_CMPR0_IRQn);
//
// Configure the STIMER and run
//
am_hal_stimer_config(AM_HAL_STIMER_CFG_CLEAR | AM_HAL_STIMER_CFG_FREEZE);
am_hal_stimer_compare_delta_set(0, WAKE_INTERVAL);
am_hal_stimer_config(AM_HAL_STIMER_XTAL_32KHZ |
AM_HAL_STIMER_CFG_COMPARE_A_ENABLE);
}
//*****************************************************************************
//
// Timer Interrupt Service Routine (ISR)
//
//*****************************************************************************
void
am_stimer_cmpr0_isr(void)
{
//
// Check the timer interrupt status.
//
am_hal_stimer_int_clear(AM_HAL_STIMER_INT_COMPAREA);
am_hal_stimer_compare_delta_set(0, WAKE_INTERVAL);
#ifdef AM_BSP_NUM_LEDS
//
// Toggle the LED.
//
#if AM_BSP_NUM_LEDS > 1
am_devices_led_array_out(am_bsp_psLEDs, AM_BSP_NUM_LEDS, 1 << (g_ui32Count % AM_BSP_NUM_LEDS));
#else
am_devices_led_array_out(am_bsp_psLEDs, 1, g_ui32Count & 1);
#endif
g_ui32Count++;
#else
am_util_stdio_printf("%d ", g_ui32Count & 7);
g_ui32Count++;
//
// Do a linefeed after 32 prints.
//
if ( (g_ui32Count & 0x1F) == 0 )
{
am_util_stdio_printf("\n");
}
#endif
}
//*****************************************************************************
//
// Main function.
//
//*****************************************************************************
int
main(void)
{
//
// Set the clock frequency.
//
am_hal_clkgen_control(AM_HAL_CLKGEN_CONTROL_SYSCLK_MAX, 0);
//
// Set the default cache configuration
//
am_hal_cachectrl_config(&am_hal_cachectrl_defaults);
am_hal_cachectrl_enable();
//
// Configure the board for low power operation.
//
am_bsp_low_power_init();
#ifdef AM_BSP_NUM_LEDS
//
// Configure the pins for this board.
//
am_devices_led_array_init(am_bsp_psLEDs, AM_BSP_NUM_LEDS);
#endif
//
// Initialize the printf interface for ITM/SWO output.
//
am_bsp_itm_printf_enable();
//
// Clear the terminal and print the banner.
//
am_util_stdio_terminal_clear();
am_util_stdio_printf("STimer Example\n");
#ifdef AM_BSP_NUM_LEDS
am_util_stdio_printf("The STimer will wake about every 1s to walk the LEDs on the EVB.\n");
#else
am_util_stdio_printf("The STimer will wake about every 1s to print to SWO.\n");
#endif
am_util_delay_ms(10);
//
// STIMER init.
//
stimer_init();
//
// Enable the timer interrupt in the NVIC.
//
am_hal_interrupt_master_enable();
#ifdef AM_BSP_NUM_LEDS
//
// We are done printing. Disable debug printf messages on ITM.
//
am_bsp_debug_printf_disable();
#endif
//
// Sleep forever while waiting for an interrupt.
//
while (1)
{
//
// Go to Deep Sleep.
//
am_hal_sysctrl_sleep(AM_HAL_SYSCTRL_SLEEP_DEEP);
}
}