Home
last modified time | relevance | path

Searched refs:size (Results 1 – 6 of 6) sorted by relevance

/edtt-latest/src/components/
Dattdata.py213 size = toNumber( data[:2] );
242 while n < size+3:
254 while n < size+3:
267 while n < size+3:
299 while n < size+3:
368 size = toNumber( self.data[:2] );
404 while n < size+3:
415 …f.data[5:7]), toNumber(self.data[7:9]), toNumber(self.data[9:11]), self.__hexByteArray(11,size+4));
421 result += ' handles: %s' % self.__hexWordArray(5, size+4);
428 if size > 7:
[all …]
Devents.py369 self.size = len(self.data);
370 …self.subEvent = struct.unpack('B', self.data[:1])[0] if self.size > 0 and self.event == Events.BT_…
379 def __checkSize(self, size): argument
380 if self.size != size:
381 if self.size == 4:
385 return self.size >= size;
387 def __checkMinSize(self, size): argument
388 if not self.size >= size:
390 return self.size >= size;
428 def __checkListSize(self, size): argument
[all …]
Dutils.py385 def toArray(number, size): argument
386 array = [0 for _ in range(size)];
388 for i in range(size):
Daddata.py464 size = len(data);
467 while n < size:
Dsmpdata.py192 size = toNumber( data[:2] );
/edtt-latest/docs/
DEDTT_transport.md55 ### `int edtt_read(u8_t *ptr, size_t size, int flags)`
57 Attempt to read size bytes thru the EDTT IF into the buffer `<*ptr>`.
60 If set to EDTTT_BLOCK it will block the calling thread until `<size>`
67 ### `int edtt_write(u8_t *ptr, size_t size, int flags)`
69 Write `<size>` bytes from `<ptr>` toward the EDTTool
73 If set to EDTTT_BLOCK it will block the calling thread until `<size>`