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: AX12.cpp
- Revision:
- 0:459be9e7bfe6
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/AX12.cpp Fri Apr 02 23:51:11 2010 +0000
@@ -0,0 +1,13 @@
+#include "AX12.h"
+
+AX12::AX12(int id) {
+ _id = id;
+}
+
+int AX12::getId() {
+ return _id;
+}
+
+void AX12::setId(int id) {
+ _id = id;
+}