Custom strstr function
Simple replacement for strstr() function present in C standard library char * custom_strstr(char *source, char *pattern, uint16_t maxbuf_size) { uint8_t pattern_lenght = 0; uint32_t i; uint32_t cnt = 0; char…
Simple replacement for strstr() function present in C standard library char * custom_strstr(char *source, char *pattern, uint16_t maxbuf_size) { uint8_t pattern_lenght = 0; uint32_t i; uint32_t cnt = 0; char…
Instruction how to build an image for Lichee Pi Zero and Lichee Pi Zero Dock in Yocto Products: Lichee Pi Zero Version Lichee Pi Zero Dock Version General Note: Assumed…