DLP-RFS-DK DLP Design, DLP-RFS-DK Datasheet - Page 33

no-image

DLP-RFS-DK

Manufacturer Part Number
DLP-RFS-DK
Description
RF Development Tools DLP-RFS1231 development kit
Manufacturer
DLP Design
Type
RF Transceiversr
Datasheet

Specifications of DLP-RFS-DK

Rohs
yes
Product
Development Kit
Tool Is For Evaluation Of
DLP-RFS1231
Frequency
915 MHz
Operating Supply Voltage
2.4 V to 3.6 V
Dimensions
1.5 in x 2 in x 1.53 in
Interface Type
UART
Maximum Operating Temperature
+ 70 C
Minimum Operating Temperature
0 C
For Use With
DLP-RFS1231
kExUser - Starting value for user-defined exceptions.
Function Documentation:
void dbgRegisterExceptionCallback (ExceptionCallback func)
Registers a callback function to receive notification of exceptions.
Parameters:
func
During development it is highly recommended that you register an exception handler in your
application so that you can diagnose them if they appear. Exceptions are considered critical and are
usually not recoverable from software. They may result as a consequence of not using the API
functions as intended.
Your application exception callback should be defined as follows:
void AppException(TException ex)
{
}
5.0.9 INTERRUPT MANAGER API
Functions:
void EnableInterrupts (void)
Globally enables interrupts.
void DisableInterrupts (void)
Globally disables interrupts.
uint16_t GetInterruptCount (void)
Gets the current count of nested interrupt disables.
void EnterISR (void)
Called on entry to an ISR. When in an ISR, the Interrupt Manager will not manipulate the semaphore.
void ExitISR (void)
Called on exit from an ISR. Allows the semaphore to behave normally.
uint8_t inISR (void)
Returns the flag indicating whether we are currently in an ISR.
void func1(void)
{
}
void main(void)
{
Rev 1.1 (November 2012)
// set a breakpoint in here to inspect the exception
DisableInterrupts();
doSomething();
EnableInterrupts();
DisableInterrupts();
func1();
doSomethingElse();
Application callback function called when an exception occurs
33
© DLP Design, Inc.

Related parts for DLP-RFS-DK