CMake add element to a list

Things I often forget Define and/or add elements to a list Read more

Listing all variables in CMake build

To list all CMake variables in a build job, enter the following: Read more

Effect of ENTRY directive in Linker Script on Cortex-M4 binary

My initial understanding of ARM Cortex-M4 bootstraping sequence was that when MCU was started, it loaded pointer from Reset_Handler IVT and then jumped to that address to start configuring the processor.Later on when I started doing some stuff on Linker... Read more

Understanding Kafka Consumer topic subscriptions

Kafka among other things provide a way to subscribe to multiple topics using the single KafkaConsumer instance. I never though how it works and just assumed that all messages will be ideally read from all subscribed topics and that there... Read more