Can_open_masternode

Dependencies:   mbed

Committer:
sam_grove
Date:
Wed Sep 26 05:48:14 2012 +0000
Revision:
7:537bae5a6fc6
Parent:
0:9dd7c6129683
Pushing the project into the new repo

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sam_grove 0:9dd7c6129683 1 /*
sam_grove 0:9dd7c6129683 2 This file is part of CanFestival, a library implementing CanOpen Stack.
sam_grove 0:9dd7c6129683 3
sam_grove 0:9dd7c6129683 4 Copyright (C): Edouard TISSERANT and Francis DUPIN
sam_grove 0:9dd7c6129683 5
sam_grove 0:9dd7c6129683 6 See COPYING file for copyrights details.
sam_grove 0:9dd7c6129683 7
sam_grove 0:9dd7c6129683 8 This library is free software; you can redistribute it and/or
sam_grove 0:9dd7c6129683 9 modify it under the terms of the GNU Lesser General Public
sam_grove 0:9dd7c6129683 10 License as published by the Free Software Foundation; either
sam_grove 0:9dd7c6129683 11 version 2.1 of the License, or (at your option) any later version.
sam_grove 0:9dd7c6129683 12
sam_grove 0:9dd7c6129683 13 This library is distributed in the hope that it will be useful,
sam_grove 0:9dd7c6129683 14 but WITHOUT ANY WARRANTY; without even the implied warranty of
sam_grove 0:9dd7c6129683 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
sam_grove 0:9dd7c6129683 16 Lesser General Public License for more details.
sam_grove 0:9dd7c6129683 17
sam_grove 0:9dd7c6129683 18 You should have received a copy of the GNU Lesser General Public
sam_grove 0:9dd7c6129683 19 License along with this library; if not, write to the Free Software
sam_grove 0:9dd7c6129683 20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
sam_grove 0:9dd7c6129683 21 */
sam_grove 0:9dd7c6129683 22
sam_grove 0:9dd7c6129683 23 #ifndef canopen_timer_h
sam_grove 0:9dd7c6129683 24 #define canopen_timer_h
sam_grove 0:9dd7c6129683 25
sam_grove 0:9dd7c6129683 26 #include <timerscfg.h>
sam_grove 0:9dd7c6129683 27 #include <applicfg.h>
sam_grove 0:9dd7c6129683 28
sam_grove 0:9dd7c6129683 29 #define TIMER_HANDLE INTEGER16
sam_grove 0:9dd7c6129683 30
sam_grove 0:9dd7c6129683 31 #include "data.h"
sam_grove 0:9dd7c6129683 32
sam_grove 0:9dd7c6129683 33 #ifdef __cplusplus
sam_grove 0:9dd7c6129683 34 extern "C"{
sam_grove 0:9dd7c6129683 35 #endif
sam_grove 0:9dd7c6129683 36
sam_grove 0:9dd7c6129683 37 /* --------- types and constants definitions --------- */
sam_grove 0:9dd7c6129683 38 #define TIMER_FREE 0
sam_grove 0:9dd7c6129683 39 #define TIMER_ARMED 1
sam_grove 0:9dd7c6129683 40 #define TIMER_TRIG 2
sam_grove 0:9dd7c6129683 41 #define TIMER_TRIG_PERIOD 3
sam_grove 0:9dd7c6129683 42
sam_grove 0:9dd7c6129683 43 #define TIMER_NONE -1
sam_grove 0:9dd7c6129683 44
sam_grove 0:9dd7c6129683 45 typedef void (*TimerCallback_t)(CO_Data* d, UNS32 id);
sam_grove 0:9dd7c6129683 46
sam_grove 0:9dd7c6129683 47 struct struct_s_timer_entry {
sam_grove 0:9dd7c6129683 48 UNS8 state;
sam_grove 0:9dd7c6129683 49 CO_Data* d;
sam_grove 0:9dd7c6129683 50 TimerCallback_t callback; /* The callback func. */
sam_grove 0:9dd7c6129683 51 UNS32 id; /* The callback func. */
sam_grove 0:9dd7c6129683 52 TIMEVAL val;
sam_grove 0:9dd7c6129683 53 TIMEVAL interval; /* Periodicity */
sam_grove 0:9dd7c6129683 54 };
sam_grove 0:9dd7c6129683 55
sam_grove 0:9dd7c6129683 56 typedef struct struct_s_timer_entry s_timer_entry;
sam_grove 0:9dd7c6129683 57
sam_grove 0:9dd7c6129683 58 /* --------- prototypes --------- */
sam_grove 0:9dd7c6129683 59 /*#define SetAlarm(d, id, callback, value, period) printf("%s, %d, SetAlarm(%s, %s, %s, %s, %s)\n",__FILE__, __LINE__, #d, #id, #callback, #value, #period); _SetAlarm(d, id, callback, value, period)*/
sam_grove 0:9dd7c6129683 60 /**
sam_grove 0:9dd7c6129683 61 * @ingroup timer
sam_grove 0:9dd7c6129683 62 * @brief Set an alarm to execute a callback function when expired.
sam_grove 0:9dd7c6129683 63 * @param *d Pointer to a CAN object data structure
sam_grove 0:9dd7c6129683 64 * @param id The alarm Id
sam_grove 0:9dd7c6129683 65 * @param callback A callback function
sam_grove 0:9dd7c6129683 66 * @param value Call the callback function at current time + value
sam_grove 0:9dd7c6129683 67 * @param period Call periodically the callback function
sam_grove 0:9dd7c6129683 68 * @return handle The timer handle
sam_grove 0:9dd7c6129683 69 */
sam_grove 0:9dd7c6129683 70 TIMER_HANDLE SetAlarm(CO_Data* d, UNS32 id, TimerCallback_t callback, TIMEVAL value, TIMEVAL period);
sam_grove 0:9dd7c6129683 71
sam_grove 0:9dd7c6129683 72 /**
sam_grove 0:9dd7c6129683 73 * @ingroup timer
sam_grove 0:9dd7c6129683 74 * @brief Delete an alarm before expiring.
sam_grove 0:9dd7c6129683 75 * @param handle A timer handle
sam_grove 0:9dd7c6129683 76 * @return The timer handle
sam_grove 0:9dd7c6129683 77 */
sam_grove 0:9dd7c6129683 78 TIMER_HANDLE DelAlarm(TIMER_HANDLE handle);
sam_grove 0:9dd7c6129683 79
sam_grove 0:9dd7c6129683 80 void TimeDispatch(void);
sam_grove 0:9dd7c6129683 81
sam_grove 0:9dd7c6129683 82 /**
sam_grove 0:9dd7c6129683 83 * @ingroup timer
sam_grove 0:9dd7c6129683 84 * @brief Set a timerfor a given time.
sam_grove 0:9dd7c6129683 85 * @param value The time value.
sam_grove 0:9dd7c6129683 86 */
sam_grove 0:9dd7c6129683 87 void setTimer(TIMEVAL value);
sam_grove 0:9dd7c6129683 88
sam_grove 0:9dd7c6129683 89 /**
sam_grove 0:9dd7c6129683 90 * @ingroup timer
sam_grove 0:9dd7c6129683 91 * @brief Get the time elapsed since latest timer occurence.
sam_grove 0:9dd7c6129683 92 * @return time elapsed since latest timer occurence
sam_grove 0:9dd7c6129683 93 */
sam_grove 0:9dd7c6129683 94 TIMEVAL getElapsedTime(void);
sam_grove 0:9dd7c6129683 95
sam_grove 0:9dd7c6129683 96 #ifdef __cplusplus
sam_grove 0:9dd7c6129683 97 }
sam_grove 0:9dd7c6129683 98 #endif
sam_grove 0:9dd7c6129683 99
sam_grove 0:9dd7c6129683 100 #endif /* #define __timer_h__ */