Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00018 #include <stdint.h>
00019 #include <stdbool.h>
00020 #include "nrf24lu1p.h"
00021
00022 void lib_crypt_generate_ls5b(uint8_t * dest_buf)
00023 {
00024 uint8_t i;
00025 bool wrap = true;
00026 static xdata uint8_t ls5b[5] = {0, 0, 0, 0, 0};
00027
00028
00029 for(i=0;i<5;i++)
00030 {
00031 if(wrap)
00032 {
00033 ls5b[i]++;
00034 if(ls5b[i] != 0x00) wrap = false;
00035 }
00036
00037
00038 dest_buf[i] = ls5b[i];
00039 }
00040 }