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.
rapid61850/gse.h@0:f09b7bb8bcce, 2012-10-02 (annotated)
- Committer:
 - sblair
 - Date:
 - Tue Oct 02 21:31:05 2012 +0000
 - Revision:
 - 0:f09b7bb8bcce
 
converted library to folder
Who changed what in which revision?
| User | Revision | Line number | New contents of line | 
|---|---|---|---|
| sblair | 0:f09b7bb8bcce | 1 | /** | 
| sblair | 0:f09b7bb8bcce | 2 | * Rapid-prototyping protection schemes with IEC 61850 | 
| sblair | 0:f09b7bb8bcce | 3 | * | 
| sblair | 0:f09b7bb8bcce | 4 | * Copyright (c) 2012 Steven Blair | 
| sblair | 0:f09b7bb8bcce | 5 | * | 
| sblair | 0:f09b7bb8bcce | 6 | * This program is free software; you can redistribute it and/or | 
| sblair | 0:f09b7bb8bcce | 7 | * modify it under the terms of the GNU General Public License | 
| sblair | 0:f09b7bb8bcce | 8 | * as published by the Free Software Foundation; either version 2 | 
| sblair | 0:f09b7bb8bcce | 9 | * of the License, or (at your option) any later version. | 
| sblair | 0:f09b7bb8bcce | 10 | |
| sblair | 0:f09b7bb8bcce | 11 | * This program is distributed in the hope that it will be useful, | 
| sblair | 0:f09b7bb8bcce | 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
| sblair | 0:f09b7bb8bcce | 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
| sblair | 0:f09b7bb8bcce | 14 | * GNU General Public License for more details. | 
| sblair | 0:f09b7bb8bcce | 15 | |
| sblair | 0:f09b7bb8bcce | 16 | * You should have received a copy of the GNU General Public License | 
| sblair | 0:f09b7bb8bcce | 17 | * along with this program; if not, write to the Free Software | 
| sblair | 0:f09b7bb8bcce | 18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | 
| sblair | 0:f09b7bb8bcce | 19 | */ | 
| sblair | 0:f09b7bb8bcce | 20 | |
| sblair | 0:f09b7bb8bcce | 21 | #ifndef GSE_H | 
| sblair | 0:f09b7bb8bcce | 22 | #define GSE_H | 
| sblair | 0:f09b7bb8bcce | 23 | |
| sblair | 0:f09b7bb8bcce | 24 | #ifdef __cplusplus /* If this is a C++ compiler, use C linkage */ | 
| sblair | 0:f09b7bb8bcce | 25 | extern "C" { | 
| sblair | 0:f09b7bb8bcce | 26 | #endif | 
| sblair | 0:f09b7bb8bcce | 27 | |
| sblair | 0:f09b7bb8bcce | 28 | #include "gseEncode.h" | 
| sblair | 0:f09b7bb8bcce | 29 | #include "gseDecode.h" | 
| sblair | 0:f09b7bb8bcce | 30 | #include "gsePacketData.h" | 
| sblair | 0:f09b7bb8bcce | 31 | |
| sblair | 0:f09b7bb8bcce | 32 | |
| sblair | 0:f09b7bb8bcce | 33 | |
| sblair | 0:f09b7bb8bcce | 34 | |
| sblair | 0:f09b7bb8bcce | 35 | void init_gse(void); | 
| sblair | 0:f09b7bb8bcce | 36 | void gseDecode(unsigned char *buf, int len); | 
| sblair | 0:f09b7bb8bcce | 37 | |
| sblair | 0:f09b7bb8bcce | 38 | |
| sblair | 0:f09b7bb8bcce | 39 | |
| sblair | 0:f09b7bb8bcce | 40 | |
| sblair | 0:f09b7bb8bcce | 41 | #ifdef __cplusplus /* If this is a C++ compiler, end C linkage */ | 
| sblair | 0:f09b7bb8bcce | 42 | } | 
| sblair | 0:f09b7bb8bcce | 43 | #endif | 
| sblair | 0:f09b7bb8bcce | 44 | |
| sblair | 0:f09b7bb8bcce | 45 | #endif |