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.
Dependents: ppCANOpen_Example DISCO-F746NG_rtos_test
include/ServiceDataObject.h@4:2034b04c86d2, 2016-01-09 (annotated)
- Committer:
- ptpaterson
- Date:
- Sat Jan 09 17:15:29 2016 +0000
- Revision:
- 4:2034b04c86d2
- Parent:
- 2:c724ff3a4e4d
echo ability
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| ptpaterson | 2:c724ff3a4e4d | 1 | /** |
| ptpaterson | 2:c724ff3a4e4d | 2 | ****************************************************************************** |
| ptpaterson | 2:c724ff3a4e4d | 3 | * @file |
| ptpaterson | 2:c724ff3a4e4d | 4 | * @author Paul Paterson |
| ptpaterson | 2:c724ff3a4e4d | 5 | * @version |
| ptpaterson | 2:c724ff3a4e4d | 6 | * @date 2015-12-14 |
| ptpaterson | 2:c724ff3a4e4d | 7 | * @brief CANOpen implementation library |
| ptpaterson | 2:c724ff3a4e4d | 8 | ****************************************************************************** |
| ptpaterson | 2:c724ff3a4e4d | 9 | * @attention |
| ptpaterson | 2:c724ff3a4e4d | 10 | * |
| ptpaterson | 2:c724ff3a4e4d | 11 | * <h2><center>© COPYRIGHT(c) 2015 Paul Paterson |
| ptpaterson | 2:c724ff3a4e4d | 12 | * |
| ptpaterson | 2:c724ff3a4e4d | 13 | * All rights reserved. |
| ptpaterson | 2:c724ff3a4e4d | 14 | |
| ptpaterson | 2:c724ff3a4e4d | 15 | This program is free software: you can redistribute it and/or modify |
| ptpaterson | 2:c724ff3a4e4d | 16 | it under the terms of the GNU General Public License as published by |
| ptpaterson | 2:c724ff3a4e4d | 17 | the Free Software Foundation, either version 3 of the License, or |
| ptpaterson | 2:c724ff3a4e4d | 18 | (at your option) any later version. |
| ptpaterson | 2:c724ff3a4e4d | 19 | |
| ptpaterson | 2:c724ff3a4e4d | 20 | This program is distributed in the hope that it will be useful, |
| ptpaterson | 2:c724ff3a4e4d | 21 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| ptpaterson | 2:c724ff3a4e4d | 22 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| ptpaterson | 2:c724ff3a4e4d | 23 | GNU General Public License for more details. |
| ptpaterson | 2:c724ff3a4e4d | 24 | |
| ptpaterson | 2:c724ff3a4e4d | 25 | You should have received a copy of the GNU General Public License |
| ptpaterson | 2:c724ff3a4e4d | 26 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
| ptpaterson | 2:c724ff3a4e4d | 27 | */ |
| ptpaterson | 2:c724ff3a4e4d | 28 | |
| ptpaterson | 2:c724ff3a4e4d | 29 | #ifndef PPCAN_SDO_H |
| ptpaterson | 2:c724ff3a4e4d | 30 | #define PPCAN_SDO_H |
| ptpaterson | 2:c724ff3a4e4d | 31 | |
| ptpaterson | 2:c724ff3a4e4d | 32 | namespace ppCANOpen |
| ptpaterson | 2:c724ff3a4e4d | 33 | { |
| ptpaterson | 2:c724ff3a4e4d | 34 | |
| ptpaterson | 2:c724ff3a4e4d | 35 | /* Avoid circular reference */ |
| ptpaterson | 2:c724ff3a4e4d | 36 | class ServiceDataObject |
| ptpaterson | 2:c724ff3a4e4d | 37 | { |
| ptpaterson | 2:c724ff3a4e4d | 38 | public: |
| ptpaterson | 2:c724ff3a4e4d | 39 | |
| ptpaterson | 2:c724ff3a4e4d | 40 | ServiceDataObject(){} |
| ptpaterson | 2:c724ff3a4e4d | 41 | |
| ptpaterson | 2:c724ff3a4e4d | 42 | |
| ptpaterson | 2:c724ff3a4e4d | 43 | |
| ptpaterson | 2:c724ff3a4e4d | 44 | private: |
| ptpaterson | 2:c724ff3a4e4d | 45 | |
| ptpaterson | 2:c724ff3a4e4d | 46 | /** Buffer to hold data during segmented or block SDO transfers |
| ptpaterson | 2:c724ff3a4e4d | 47 | * @note |
| ptpaterson | 2:c724ff3a4e4d | 48 | */ |
| ptpaterson | 2:c724ff3a4e4d | 49 | char * dataBuffer; |
| ptpaterson | 2:c724ff3a4e4d | 50 | }; |
| ptpaterson | 2:c724ff3a4e4d | 51 | |
| ptpaterson | 2:c724ff3a4e4d | 52 | } /* namespace ppCANOpen */ |
| ptpaterson | 2:c724ff3a4e4d | 53 | |
| ptpaterson | 2:c724ff3a4e4d | 54 | #endif // PPCAN_SDO_H |