| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994 |
- /**************************************************************************************************
- Filename: OSAL.c
- Revised: $Date: 2009-03-12 16:25:22 -0700 (Thu, 12 Mar 2009) $
- Revision: $Revision: 19404 $
- Description: This API allows the software components in the Z-stack to be written
- independently of the specifics of the operating system, kernel or tasking
- environment (including control loops or connect-to-interrupt systems).
- Copyright 2004-2009 Texas Instruments Incorporated. All rights reserved.
- IMPORTANT: Your use of this Software is limited to those specific rights
- granted under the terms of a software license agreement between the user
- who downloaded the software, his/her employer (which must be your employer)
- and Texas Instruments Incorporated (the "License"). You may not use this
- Software unless you agree to abide by the terms of the License. The License
- limits your use, and you acknowledge, that the Software may not be modified,
- copied or distributed unless embedded on a Texas Instruments microcontroller
- or used solely and exclusively in conjunction with a Texas Instruments radio
- frequency transceiver, which is integrated into your product. Other than for
- the foregoing purpose, you may not use, reproduce, copy, prepare derivative
- works of, modify, distribute, perform, display or sell this Software and/or
- its documentation for any purpose.
- YOU FURTHER ACKNOWLEDGE AND AGREE THAT THE SOFTWARE AND DOCUMENTATION ARE
- PROVIDED “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED,
- INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY, TITLE,
- NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL
- TEXAS INSTRUMENTS OR ITS LICENSORS BE LIABLE OR OBLIGATED UNDER CONTRACT,
- NEGLIGENCE, STRICT LIABILITY, CONTRIBUTION, BREACH OF WARRANTY, OR OTHER
- LEGAL EQUITABLE THEORY ANY DIRECT OR INDIRECT DAMAGES OR EXPENSES
- INCLUDING BUT NOT LIMITED TO ANY INCIDENTAL, SPECIAL, INDIRECT, PUNITIVE
- OR CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, COST OF PROCUREMENT
- OF SUBSTITUTE GOODS, TECHNOLOGY, SERVICES, OR ANY CLAIMS BY THIRD PARTIES
- (INCLUDING BUT NOT LIMITED TO ANY DEFENSE THEREOF), OR OTHER SIMILAR COSTS.
- Should you have any questions regarding your right to use this Software,
- contact Texas Instruments Incorporated at www.TI.com.
- **************************************************************************************************/
- /*********************************************************************
- * INCLUDES
- */
- #include <string.h>
- #include "comdef.h"
- #include "OSAL.h"
- #include "OSAL_Tasks.h"
- #include "OSAL_Memory.h"
- #include "OSAL_PwrMgr.h"
- #include "OSAL_Clock.h"
- #include "OnBoard.h"
- /* HAL */
- #include "hal_drivers.h"
- /*********************************************************************
- * MACROS
- */
- #define OSAL_MSG_LEN(msg_ptr) ((osal_msg_hdr_t *) (msg_ptr) - 1)->len
- #define OSAL_MSG_ID(msg_ptr) ((osal_msg_hdr_t *) (msg_ptr) - 1)->dest_id
- /*********************************************************************
- * CONSTANTS
- */
- /*********************************************************************
- * TYPEDEFS
- */
- /*********************************************************************
- * GLOBAL VARIABLES
- */
- // Message Pool Definitions
- osal_msg_q_t osal_qHead;
- #if defined( OSAL_TOTAL_MEM )
- uint16 osal_msg_cnt;
- #endif
- /*********************************************************************
- * EXTERNAL VARIABLES
- */
- /*********************************************************************
- * EXTERNAL FUNCTIONS
- */
- /*********************************************************************
- * LOCAL VARIABLES
- */
- /*********************************************************************
- * LOCAL FUNCTION PROTOTYPES
- */
- /*********************************************************************
- * HELPER FUNCTIONS
- */
- /* very ugly stub so Keil can compile */
- #ifdef __KEIL__
- char * itoa ( int value, char * buffer, int radix )
- {
- return(buffer);
- }
- #endif
- /*********************************************************************
- * @fn osal_strlen
- *
- * @brief
- *
- * Calculates the length of a string. The string must be null
- * terminated.
- *
- * @param char *pString - pointer to text string
- *
- * @return int - number of characters
- */
- int osal_strlen( char *pString )
- {
- return (int)( strlen( pString ) );
- }
- /*********************************************************************
- * @fn osal_memcpy
- *
- * @brief
- *
- * Generic memory copy.
- *
- * Note: This function differs from the standard memcpy(), since
- * it returns the pointer to the next destination uint8. The
- * standard memcpy() returns the original destination address.
- *
- * @param dst - destination address
- * @param src - source address
- * @param len - number of bytes to copy
- *
- * @return pointer to end of destination buffer
- */
- void *osal_memcpy( void *dst, const void GENERIC *src, unsigned int len )
- {
- uint8 *pDst;
- const uint8 GENERIC *pSrc;
- pSrc = src;
- pDst = dst;
- while ( len-- )
- *pDst++ = *pSrc++;
- return ( pDst );
- }
- /*********************************************************************
- * @fn osal_memcmp
- *
- * @brief
- *
- * Generic memory compare.
- *
- * @param src1 - source 1 addrexx
- * @param src2 - source 2 address
- * @param len - number of bytes to compare
- *
- * @return TRUE - same, FALSE - different
- */
- uint8 osal_memcmp( const void GENERIC *src1, const void GENERIC *src2, unsigned int len )
- {
- const uint8 GENERIC *pSrc1;
- const uint8 GENERIC *pSrc2;
- pSrc1 = src1;
- pSrc2 = src2;
- while ( len-- )
- {
- if( *pSrc1++ != *pSrc2++ )
- return FALSE;
- }
- return TRUE;
- }
- /*********************************************************************
- * @fn osal_memset
- *
- * @brief
- *
- * Set memory buffer to value.
- *
- * @param dest - pointer to buffer
- * @param value - what to set each uint8 of the message
- * @param size - how big
- *
- * @return value of next widget, 0 if no widget found
- */
- void *osal_memset( void *dest, uint8 value, int len )
- {
- return memset( dest, value, len );
- }
- /*********************************************************************
- * @fn osal_build_uint16
- *
- * @brief
- *
- * Build a uint16 out of 2 bytes (0 then 1).
- *
- * @param swapped - 0 then 1
- *
- * @return uint16
- */
- uint16 osal_build_uint16( uint8 *swapped )
- {
- return ( BUILD_UINT16( swapped[0], swapped[1] ) );
- }
- /*********************************************************************
- * @fn osal_build_uint32
- *
- * @brief
- *
- * Build a uint32 out of sequential bytes.
- *
- * @param swapped - sequential bytes
- * @param len - number of bytes in the uint8 array
- *
- * @return uint32
- */
- uint32 osal_build_uint32( uint8 *swapped, uint8 len )
- {
- if ( len == 2 )
- return ( BUILD_UINT32( swapped[0], swapped[1], 0L, 0L ) );
- else if ( len == 3 )
- return ( BUILD_UINT32( swapped[0], swapped[1], swapped[2], 0L ) );
- else if ( len == 4 )
- return ( BUILD_UINT32( swapped[0], swapped[1], swapped[2], swapped[3] ) );
- else
- return ( (uint32)swapped[0] );
- }
- #if !defined ( ZBIT ) && !defined ( ZBIT2 ) && !defined (UBIT)
- /*********************************************************************
- * @fn _ltoa
- *
- * @brief
- *
- * convert a long unsigned int to a string.
- *
- * @param l - long to convert
- * @param buf - buffer to convert to
- * @param radix - 10 dec, 16 hex
- *
- * @return pointer to buffer
- */
- unsigned char * _ltoa(unsigned long l, unsigned char *buf, unsigned char radix)
- {
- #if defined( __GNUC__ )
- return ( (char*)ltoa( l, buf, radix ) );
- #else
- unsigned char tmp1[10] = "", tmp2[10] = "", tmp3[10] = "";
- unsigned short num1, num2, num3;
- unsigned char i;
- buf[0] = '\0';
- if ( radix == 10 )
- {
- num1 = l % 10000;
- num2 = (l / 10000) % 10000;
- num3 = (unsigned short)(l / 100000000);
- if (num3) _itoa(num3, tmp3, 10);
- if (num2) _itoa(num2, tmp2, 10);
- if (num1) _itoa(num1, tmp1, 10);
- if (num3)
- {
- strcpy((char*)buf, (char const*)tmp3);
- for (i = 0; i < 4 - strlen((char const*)tmp2); i++)
- strcat((char*)buf, "0");
- }
- strcat((char*)buf, (char const*)tmp2);
- if (num3 || num2)
- {
- for (i = 0; i < 4 - strlen((char const*)tmp1); i++)
- strcat((char*)buf, "0");
- }
- strcat((char*)buf, (char const*)tmp1);
- if (!num3 && !num2 && !num1)
- strcpy((char*)buf, "0");
- }
- else if ( radix == 16 )
- {
- num1 = l & 0x0000FFFF;
- num2 = l >> 16;
- if (num2) _itoa(num2, tmp2, 16);
- if (num1) _itoa(num1, tmp1, 16);
- if (num2)
- {
- strcpy((char*)buf,(char const*)tmp2);
- for (i = 0; i < 4 - strlen((char const*)tmp1); i++)
- strcat((char*)buf, "0");
- }
- strcat((char*)buf, (char const*)tmp1);
- if (!num2 && !num1)
- strcpy((char*)buf, "0");
- }
- else
- return NULL;
- return buf;
- #endif
- }
- #endif // !defined(ZBIT) && !defined(ZBIT2)
- /*********************************************************************
- * @fn osal_rand
- *
- * @brief Random number generator
- *
- * @param none
- *
- * @return uint16 - new random number
- */
- uint16 osal_rand( void )
- {
- return ( Onboard_rand() );
- }
- /*********************************************************************
- * API FUNCTIONS
- *********************************************************************/
- /*********************************************************************
- * @fn osal_msg_allocate
- *
- * @brief
- *
- * This function is called by a task to allocate a message buffer
- * into which the task will encode the particular message it wishes
- * to send. This common buffer scheme is used to strictly limit the
- * creation of message buffers within the system due to RAM size
- * limitations on the microprocessor. Note that all message buffers
- * are a fixed size (at least initially). The parameter len is kept
- * in case a message pool with varying fixed message sizes is later
- * created (for example, a pool of message buffers of size LARGE,
- * MEDIUM and SMALL could be maintained and allocated based on request
- * from the tasks).
- *
- *
- * @param uint8 len - wanted buffer length
- *
- *
- * @return pointer to allocated buffer or NULL if allocation failed.
- */
- uint8 * osal_msg_allocate( uint16 len )
- {
- osal_msg_hdr_t *hdr;
- if ( len == 0 )
- return ( NULL );
- hdr = (osal_msg_hdr_t *) osal_mem_alloc( (short)(len + sizeof( osal_msg_hdr_t )) );
- if ( hdr )
- {
- hdr->next = NULL;
- hdr->len = len;
- hdr->dest_id = TASK_NO_TASK;
- #if defined( OSAL_TOTAL_MEM )
- osal_msg_cnt++;
- #endif
- return ( (uint8 *) (hdr + 1) );
- }
- else
- return ( NULL );
- }
- /*********************************************************************
- * @fn osal_msg_deallocate
- *
- * @brief
- *
- * This function is used to deallocate a message buffer. This function
- * is called by a task (or processing element) after it has finished
- * processing a received message.
- *
- *
- * @param uint8 *msg_ptr - pointer to new message buffer
- *
- * @return SUCCESS, INVALID_MSG_POINTER
- */
- uint8 osal_msg_deallocate( uint8 *msg_ptr )
- {
- uint8 *x;
- if ( msg_ptr == NULL )
- return ( INVALID_MSG_POINTER );
- // don't deallocate queued buffer
- if ( OSAL_MSG_ID( msg_ptr ) != TASK_NO_TASK )
- return ( MSG_BUFFER_NOT_AVAIL );
- x = (uint8 *)((uint8 *)msg_ptr - sizeof( osal_msg_hdr_t ));
- osal_mem_free( (void *)x );
- #if defined( OSAL_TOTAL_MEM )
- if ( osal_msg_cnt )
- osal_msg_cnt--;
- #endif
- return ( SUCCESS );
- }
- #if defined( OSAL_TOTAL_MEM )
- /*********************************************************************
- * @fn osal_num_msgs
- *
- * @brief
- *
- * This function returns the number of allocated messages
- *
- * @param void
- *
- * @return uint16 - number of msgs out
- */
- uint16 osal_num_msgs( void )
- {
- return ( osal_msg_cnt );
- }
- #endif
- /*********************************************************************
- * @fn osal_msg_send
- *
- * @brief
- *
- * This function is called by a task to send a command message to
- * another task or processing element. The sending_task field must
- * refer to a valid task, since the task ID will be used
- * for the response message. This function will also set a message
- * ready event in the destination tasks event list.
- *
- *
- * @param uint8 destination task - Send msg to? Task ID
- * @param uint8 *msg_ptr - pointer to new message buffer
- * @param uint8 len - length of data in message
- *
- * @return SUCCESS, INVALID_TASK, INVALID_MSG_POINTER
- */
- uint8 osal_msg_send( uint8 destination_task, uint8 *msg_ptr )
- {
- if ( msg_ptr == NULL )
- return ( INVALID_MSG_POINTER );
- if ( destination_task >= tasksCnt )
- {
- osal_msg_deallocate( msg_ptr );
- return ( INVALID_TASK );
- }
- // Check the message header
- if ( OSAL_MSG_NEXT( msg_ptr ) != NULL ||
- OSAL_MSG_ID( msg_ptr ) != TASK_NO_TASK )
- {
- osal_msg_deallocate( msg_ptr );
- return ( INVALID_MSG_POINTER );
- }
- OSAL_MSG_ID( msg_ptr ) = destination_task;
- // queue message
- osal_msg_enqueue( &osal_qHead, msg_ptr );
- // Signal the task that a message is waiting
- osal_set_event( destination_task, SYS_EVENT_MSG );
- return ( SUCCESS );
- }
- /*********************************************************************
- * @fn osal_msg_receive
- *
- * @brief
- *
- * This function is called by a task to retrieve a received command
- * message. The calling task must deallocate the message buffer after
- * processing the message using the osal_msg_deallocate() call.
- *
- * @param uint8 task_id - receiving tasks ID
- *
- * @return *uint8 - message information or NULL if no message
- */
- uint8 *osal_msg_receive( uint8 task_id )
- {
- osal_msg_hdr_t *listHdr;
- osal_msg_hdr_t *prevHdr=0;
- halIntState_t intState;
- // Hold off interrupts
- HAL_ENTER_CRITICAL_SECTION(intState);
- // Point to the top of the queue
- listHdr = osal_qHead;
- // Look through the queue for a message that belongs to the asking task
- while ( listHdr != NULL )
- {
- if ( (listHdr - 1)->dest_id == task_id )
- {
- break;
- }
- prevHdr = listHdr;
- listHdr = OSAL_MSG_NEXT( listHdr );
- }
- // Did we find a message?
- if ( listHdr == NULL )
- {
- // Release interrupts
- HAL_EXIT_CRITICAL_SECTION(intState);
- return NULL;
- }
- // Take out of the link list
- osal_msg_extract( &osal_qHead, listHdr, prevHdr );
- // Release interrupts
- HAL_EXIT_CRITICAL_SECTION(intState);
- return ( (uint8*) listHdr );
- }
- /*********************************************************************
- * @fn osal_msg_enqueue
- *
- * @brief
- *
- * This function enqueues an OSAL message into an OSAL queue.
- *
- * @param osal_msg_q_t *q_ptr - OSAL queue
- * @param void *msg_ptr - OSAL message
- *
- * @return none
- */
- void osal_msg_enqueue( osal_msg_q_t *q_ptr, void *msg_ptr )
- {
- void *list;
- halIntState_t intState;
- // Hold off interrupts
- HAL_ENTER_CRITICAL_SECTION(intState);
- OSAL_MSG_NEXT( msg_ptr ) = NULL;
- // If first message in queue
- if ( *q_ptr == NULL )
- {
- *q_ptr = msg_ptr;
- }
- else
- {
- // Find end of queue
- for ( list = *q_ptr; OSAL_MSG_NEXT( list ) != NULL; list = OSAL_MSG_NEXT( list ) );
- // Add message to end of queue
- OSAL_MSG_NEXT( list ) = msg_ptr;
- }
- // Re-enable interrupts
- HAL_EXIT_CRITICAL_SECTION(intState);
- }
- /*********************************************************************
- * @fn osal_msg_dequeue
- *
- * @brief
- *
- * This function dequeues an OSAL message from an OSAL queue.
- *
- * @param osal_msg_q_t *q_ptr - OSAL queue
- *
- * @return void * - pointer to OSAL message or NULL of queue is empty.
- */
- void *osal_msg_dequeue( osal_msg_q_t *q_ptr )
- {
- void *msg_ptr;
- halIntState_t intState;
- // Hold off interrupts
- HAL_ENTER_CRITICAL_SECTION(intState);
- if ( *q_ptr == NULL )
- {
- HAL_EXIT_CRITICAL_SECTION(intState);
- return NULL;
- }
- // Dequeue message
- msg_ptr = *q_ptr;
- *q_ptr = OSAL_MSG_NEXT( msg_ptr );
- OSAL_MSG_NEXT( msg_ptr ) = NULL;
- OSAL_MSG_ID( msg_ptr ) = TASK_NO_TASK;
- // Re-enable interrupts
- HAL_EXIT_CRITICAL_SECTION(intState);
- return msg_ptr;
- }
- /*********************************************************************
- * @fn osal_msg_push
- *
- * @brief
- *
- * This function pushes an OSAL message to the head of an OSAL
- * queue.
- *
- * @param osal_msg_q_t *q_ptr - OSAL queue
- * @param void *msg_ptr - OSAL message
- *
- * @return none
- */
- void osal_msg_push( osal_msg_q_t *q_ptr, void *msg_ptr )
- {
- halIntState_t intState;
- // Hold off interrupts
- HAL_ENTER_CRITICAL_SECTION(intState);
- // Push message to head of queue
- OSAL_MSG_NEXT( msg_ptr ) = *q_ptr;
- *q_ptr = msg_ptr;
- // Re-enable interrupts
- HAL_EXIT_CRITICAL_SECTION(intState);
- }
- /*********************************************************************
- * @fn osal_msg_extract
- *
- * @brief
- *
- * This function extracts and removes an OSAL message from the
- * middle of an OSAL queue.
- *
- * @param osal_msg_q_t *q_ptr - OSAL queue
- * @param void *msg_ptr - OSAL message to be extracted
- * @param void *prev_ptr - OSAL message before msg_ptr in queue
- *
- * @return none
- */
- void osal_msg_extract( osal_msg_q_t *q_ptr, void *msg_ptr, void *prev_ptr )
- {
- halIntState_t intState;
- // Hold off interrupts
- HAL_ENTER_CRITICAL_SECTION(intState);
- if ( msg_ptr == *q_ptr )
- {
- // remove from first
- *q_ptr = OSAL_MSG_NEXT( msg_ptr );
- }
- else
- {
- // remove from middle
- OSAL_MSG_NEXT( prev_ptr ) = OSAL_MSG_NEXT( msg_ptr );
- }
- OSAL_MSG_NEXT( msg_ptr ) = NULL;
- OSAL_MSG_ID( msg_ptr ) = TASK_NO_TASK;
- // Re-enable interrupts
- HAL_EXIT_CRITICAL_SECTION(intState);
- }
- /*********************************************************************
- * @fn osal_msg_enqueue_max
- *
- * @brief
- *
- * This function enqueues an OSAL message into an OSAL queue if
- * the length of the queue is less than max.
- *
- * @param osal_msg_q_t *q_ptr - OSAL queue
- * @param void *msg_ptr - OSAL message
- * @param uint8 max - maximum length of queue
- *
- * @return TRUE if message was enqueued, FALSE otherwise
- */
- uint8 osal_msg_enqueue_max( osal_msg_q_t *q_ptr, void *msg_ptr, uint8 max )
- {
- void *list;
- uint8 ret = FALSE;
- halIntState_t intState;
- // Hold off interrupts
- HAL_ENTER_CRITICAL_SECTION(intState);
- // If first message in queue
- if ( *q_ptr == NULL )
- {
- *q_ptr = msg_ptr;
- ret = TRUE;
- }
- else
- {
- // Find end of queue or max
- list = *q_ptr;
- max--;
- while ( (OSAL_MSG_NEXT( list ) != NULL) && (max > 0) )
- {
- list = OSAL_MSG_NEXT( list );
- max--;
- }
- // Add message to end of queue if max not reached
- if ( max != 0 )
- {
- OSAL_MSG_NEXT( list ) = msg_ptr;
- ret = TRUE;
- }
- }
- // Re-enable interrupts
- HAL_EXIT_CRITICAL_SECTION(intState);
- return ret;
- }
- /*********************************************************************
- * @fn osal_set_event
- *
- * @brief
- *
- * This function is called to set the event flags for a task. The
- * event passed in is OR'd into the task's event variable.
- *
- * @param uint8 task_id - receiving tasks ID
- * @param uint8 event_flag - what event to set
- *
- * @return SUCCESS, INVALID_TASK
- */
- uint8 osal_set_event( uint8 task_id, uint16 event_flag )
- {
- if ( task_id < tasksCnt )
- {
- halIntState_t intState;
- HAL_ENTER_CRITICAL_SECTION(intState); // Hold off interrupts
- tasksEvents[task_id] |= event_flag; // Stuff the event bit(s)
- HAL_EXIT_CRITICAL_SECTION(intState); // Release interrupts
- }
- else
- return ( INVALID_TASK );
- return ( SUCCESS );
- }
- /*********************************************************************
- * @fn osal_isr_register
- *
- * @brief
- *
- * This function is called to register a service routine with an
- * interrupt. When the interrupt occurs, this service routine is called.
- *
- * @param uint8 interrupt_id - Interrupt number
- * @param void (*isr_ptr)( uint8* ) - function pointer to ISR
- *
- * @return SUCCESS, INVALID_INTERRUPT_ID,
- */
- uint8 osal_isr_register( uint8 interrupt_id, void (*isr_ptr)( uint8* ) )
- {
- // Remove these statements when functionality is complete
- (void)interrupt_id;
- (void)isr_ptr;
- return ( SUCCESS );
- }
- /*********************************************************************
- * @fn osal_int_enable
- *
- * @brief
- *
- * This function is called to enable an interrupt. Once enabled,
- * occurrence of the interrupt causes the service routine associated
- * with that interrupt to be called.
- *
- * If INTS_ALL is the interrupt_id, interrupts (in general) are enabled.
- * If a single interrupt is passed in, then interrupts still have
- * to be enabled with another call to INTS_ALL.
- *
- * @param uint8 interrupt_id - Interrupt number
- *
- * @return SUCCESS or INVALID_INTERRUPT_ID
- */
- uint8 osal_int_enable( uint8 interrupt_id )
- {
- if ( interrupt_id == INTS_ALL )
- {
- HAL_ENABLE_INTERRUPTS();
- }
- else
- return ( INVALID_INTERRUPT_ID );
- return ( SUCCESS );
- }
- /*********************************************************************
- * @fn osal_int_disable
- *
- * @brief
- *
- * This function is called to disable an interrupt. When a disabled
- * interrupt occurs, the service routine associated with that
- * interrupt is not called.
- *
- * If INTS_ALL is the interrupt_id, interrupts (in general) are disabled.
- * If a single interrupt is passed in, then just that interrupt is disabled.
- *
- * @param uint8 interrupt_id - Interrupt number
- *
- * @return SUCCESS or INVALID_INTERRUPT_ID
- */
- uint8 osal_int_disable( uint8 interrupt_id )
- {
- if ( interrupt_id == INTS_ALL )
- {
- HAL_DISABLE_INTERRUPTS();
- }
- else
- return ( INVALID_INTERRUPT_ID );
- return ( SUCCESS );
- }
- /*********************************************************************
- * @fn osal_init_system
- *
- * @brief
- *
- * This function initializes the "task" system by creating the
- * tasks defined in the task table (OSAL_Tasks.h).
- *
- * @param void
- *
- * @return SUCCESS
- */
- uint8 osal_init_system( void )
- {
- // Initialize the Memory Allocation System
- osal_mem_init();
- // Initialize the message queue
- osal_qHead = NULL;
- #if defined( OSAL_TOTAL_MEM )
- osal_msg_cnt = 0;
- #endif
- // Initialize the timers
- osalTimerInit();
- // Initialize the Power Management System
- osal_pwrmgr_init();
- // Initialize the system tasks.
- osalInitTasks();
- // Setup efficient search for the first free block of heap.
- osal_mem_kick();
- return ( SUCCESS );
- }
- /*********************************************************************
- * @fn osal_start_system
- *
- * @brief
- *
- * This function is the main loop function of the task system. It
- * will look through all task events and call the task_event_processor()
- * function for the task with the event. If there are no events (for
- * all tasks), this function puts the processor into Sleep.
- * This Function doesn't return.
- *
- * @param void
- *
- * @return none
- */
- void osal_start_system( void )
- {
- #if !defined ( ZBIT ) && !defined ( UBIT )
- for(;;) // Forever Loop
- #endif
- {
- uint8 idx = 0;
-
- osalTimeUpdate();
-
- Hal_ProcessPoll(); // This replaces MT_SerialPoll() and osal_check_timer().
- do {
- if (tasksEvents[idx]) // Task is highest priority that is ready.
- {
- break;
- }
- } while (++idx < tasksCnt);
- if (idx < tasksCnt)
- {
- uint16 events;
- halIntState_t intState;
- HAL_ENTER_CRITICAL_SECTION(intState);
- events = tasksEvents[idx];
- tasksEvents[idx] = 0; // Clear the Events for this task.
- HAL_EXIT_CRITICAL_SECTION(intState);
- events = (tasksArr[idx])( idx, events );
- HAL_ENTER_CRITICAL_SECTION(intState);
- tasksEvents[idx] |= events; // Add back unprocessed events to the current task.
- HAL_EXIT_CRITICAL_SECTION(intState);
- }
- #if defined( POWER_SAVING )
- else // Complete pass through all task events with no activity?
- {
- osal_pwrmgr_powerconserve(); // Put the processor/system into sleep
- }
- #endif
- }
- }
- /*********************************************************************
- * @fn osal_buffer_uint32
- *
- * @brief
- *
- * Buffer an uint32 value - LSB first.
- *
- * @param buf - buffer
- * @param val - uint32 value
- *
- * @return pointer to end of destination buffer
- */
- uint8* osal_buffer_uint32( uint8 *buf, uint32 val )
- {
- *buf++ = BREAK_UINT32( val, 0 );
- *buf++ = BREAK_UINT32( val, 1 );
- *buf++ = BREAK_UINT32( val, 2 );
- *buf++ = BREAK_UINT32( val, 3 );
- return buf;
- }
- /*********************************************************************
- * @fn osal_buffer_uint24
- *
- * @brief
- *
- * Buffer an uint24 value - LSB first. Note that type uint24 is
- * typedef to uint32 in comdef.h
- *
- * @param buf - buffer
- * @param val - uint24 value
- *
- * @return pointer to end of destination buffer
- */
- uint8* osal_buffer_uint24( uint8 *buf, uint24 val )
- {
- *buf++ = BREAK_UINT32( val, 0 );
- *buf++ = BREAK_UINT32( val, 1 );
- *buf++ = BREAK_UINT32( val, 2 );
- return buf;
- }
- /*********************************************************************
- *********************************************************************/
|