unsigned char array
Dependents: MGC3130 SmartLabXBeeCore
Diff: BufferedArray.h
- Revision:
- 1:77c1ea04eb5a
- Parent:
- 0:b35da77c40ca
- Child:
- 2:765da30c4d9b
--- a/BufferedArray.h Wed Nov 11 18:33:41 2015 +0000 +++ b/BufferedArray.h Thu Nov 12 02:06:49 2015 +0000 @@ -81,7 +81,7 @@ * @param offset start point of the data * @param length length to write */ - void sets(const void * value, int length); + void sets(const unsigned char * value, int offset, int length); /** Write 8-bit data into specific posiston and deos not affect the current position. * @param position where to write @@ -95,7 +95,7 @@ * @param offset start point of the data * @param length length to write */ - void sets(int position, const void * value, int length); + void sets(int position, const unsigned char * value, int offset, int length); }; #endif