Energy Detection Demo application implementation.
Copyright (c) 2014-2018 Microchip Technology Inc. and its subsidiaries.
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "config.h"
#include "phy.h"
#include "sys.h"
#include "nwk.h"
#include "sysTimer.h"
#include "sio2host.h"
#include "led.h"
#include "sysclk.h"
#include "asf.h"
Typedefs | |
typedef enum AppState_t | AppState_t |
Functions | |
static void | APP_TaskHandler (void) |
static void | appInit (void) |
static void | appPrintEdValues (void) |
static void | appScanTimerHandler (SYS_Timer_t *timer) |
int | main (void) |
Main function. More... | |
Variables | |
static uint8_t | appEdValue [APP_LAST_CHANNEL-APP_FIRST_CHANNEL+1] |
static SYS_Timer_t | appScanTimer |
static AppState_t | appState = APP_STATE_INITIAL |
typedef enum AppState_t AppState_t |
enum AppState_t |
|
static |
References APP_FIRST_CHANNEL, APP_STATE_INITIAL, APP_STATE_MEASURE_ED, APP_STATE_WAIT_SCAN_TIMER, appEdValue, appInit(), appPrintEdValues(), appState, PHY_EdReq(), and PHY_SetChannel().
Referenced by main().
|
static |
References APP_SCAN_INTERVAL, APP_STATE_MEASURE_ED, appScanTimerHandler(), appState, SYS_Timer_t::handler, SYS_Timer_t::interval, SYS_Timer_t::mode, PHY_SetRxState(), SYS_TIMER_PERIODIC_MODE, and SYS_TimerStart().
Referenced by APP_TaskHandler().
|
static |
References appEdValue, PHY_RSSI_BASE_VAL, and sio2host_putchar().
Referenced by APP_TaskHandler().
|
static |
References APP_STATE_MEASURE_ED, and appState.
Referenced by appInit().
int main | ( | void | ) |
Main function.
Main function.
This function initializes the MAC, initiates a MLME reset request (wpan_mlme_reset_req()), and implements a the main loop.
Main function.
The master example begins by initializing required board resources. The system clock, basic GPIO pin mapping, and interrupt vectors are established.
A memory location on a TWI slave is written with a fixed test pattern which is then read back into a separate buffer. As a basic sanity check, the original write-buffer values are compared with values read from the slave to a separate buffer. An LED on the development board is illuminated when there is a match between the written and read data.
Main function.
Main function.
Initializes the clock system, board and serial output, then sets up the Sleep Manager unit test suite and runs it.
Main function.
Initializes the clock system, board and serial output, then sets up the IOPORT Service unit test suite and runs it.
Main function.
Initializes the clock system, board and serial output, then sets up the USART unit test suite and runs it.
Main function.
Initializes the clock system, board and serial output, then sets up the TWI unit test suite and runs it.
Main function.
The SAM3X_EK, SAM3X Arduino board and SAM4C_EK use two bytes length internal address EEPROM.
References APP_TaskHandler(), board_init(), cpu_irq_enable, delay_init, LED0, LED_On, sio2host_init(), SYS_Init(), SYS_TaskHandler(), and sysclk_init().
|
static |
Referenced by APP_TaskHandler(), and appPrintEdValues().
|
static |
|
static |
Referenced by APP_TaskHandler(), appInit(), and appScanTimerHandler().