Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: lab.h
- Revision:
- 0:3b1436860958
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lab.h Mon Nov 30 14:09:30 2020 +0000 @@ -0,0 +1,44 @@ +/*************************************************************************** +* Titel : CAM.H +* Description : Headerfile fuer Labormodul lab.c +* Revision List: + ---------------------------------------------------------------------------- + Date | Author | Change + ---------------------------------------------------------------------------- + 15.11.13 |J. Altenburg | Ersterstellung + ---------------------------------------------------------------------------- + | | + ---------------------------------------------------------------------------- +******************************************************************************/ +#ifndef LAB_H +#define LAB_H + +/*************************************************************************** +* HEADER-FILES (Only those that are needed in this file) +****************************************************************************/ +/* System-headerfiles */ +#include "cdef.h" /* General definitions and types */ + +/* Foreign headerfiles */ + + +/*************************************************************************** +* Defines und Makros für externen Zugriff * +***************************************************************************/ + +/*************************************************************************** +* Funktionsprototypen +****************************************************************************/ +void LAB_vInit ( void ); +void LAB_vMain ( void ); +void LAB_vTxToPC ( byte *, byte ); +void LAB_vRxFromPC ( byte ); +void LAB_vRxFromXbee( byte ); +void LAB_vRxFromCam4( byte ); +void LAB_v10ms ( void ); +void LAB_vTasteShort( void ); +void LAB_vTasteLong ( void ); +void LAB_vTasteFree ( void ); + +#endif +