sk6812: send END_OF_UPDATE in the last packet
This commit is contained in:
parent
f0afdcfa01
commit
d7c5070bb9
5
sk6812.c
5
sk6812.c
|
@ -22,6 +22,7 @@
|
||||||
#define FADE_COLOR 1
|
#define FADE_COLOR 1
|
||||||
#define ADD_COLOR 2
|
#define ADD_COLOR 2
|
||||||
#define SET_FADESTEP 3
|
#define SET_FADESTEP 3
|
||||||
|
#define END_OF_UPDATE 254
|
||||||
|
|
||||||
// creates the socket needed for steering the LED strip
|
// creates the socket needed for steering the LED strip
|
||||||
int sk6812_init(struct sk6812_ctx *ctx, const char *host, unsigned short port) {
|
int sk6812_init(struct sk6812_ctx *ctx, const char *host, unsigned short port) {
|
||||||
|
@ -102,6 +103,10 @@ void sk6812_set_fadestep(struct sk6812_ctx *ctx, uint8_t fadestep) {
|
||||||
}
|
}
|
||||||
|
|
||||||
int sk6812_commit(struct sk6812_ctx *ctx) {
|
int sk6812_commit(struct sk6812_ctx *ctx) {
|
||||||
|
// send end-of-update packet in the end
|
||||||
|
ctx->packetQueue[ctx->queueIndex].action = END_OF_UPDATE;
|
||||||
|
ctx->queueIndex++;
|
||||||
|
|
||||||
if(send(ctx->socket, ctx->packetQueue, ctx->queueIndex * sizeof(struct SK6812Packet), 0) == -1) {
|
if(send(ctx->socket, ctx->packetQueue, ctx->queueIndex * sizeof(struct SK6812Packet), 0) == -1) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue