I'm trying to rewrite some code from C and I came across a pattern I do not understand.
uint8_t buffer[20];
...
uint8_t *ps = buffer+3
What does the +3 mean?
My assumption is this the first three bytes of the buffered array but I'm not sure and I can't seem to find an explanation.