removed old file rssrviceserialiser.h/cc

This commit is contained in:
csoler 2017-04-30 20:08:30 +02:00
parent 14076de1e0
commit 24c7c38016
6 changed files with 9 additions and 64 deletions

View file

@ -117,7 +117,13 @@
// addSerialType(new MyServiceSerializer()) ;
// }
//
// 4 - in your service, recieve and send items by calling recvItem() and sendItem() respectively.
// If needed, you may serialize your own items by calling:
//
// uint32_t size = MySerializer().size(item) ;
// uint8_t *data = (uint8_t*)malloc(size);
// MySerializer().serialise(item,data,size) ;
//
// 4 - in your service, receive and send items by calling recvItem() and sendItem() respectively.
//
#include <stdint.h>
#include <string.h>