Learning BLE from Scratch: Attributes and UUIDs

Learning BLE from Scratch: Attributes and UUIDs

Attributes play a crucial role in BLE, serving as a bridge between different components. Today, let’s learn about the concept of attributes. Attributes: The architecture of BLE is divided into servers and clients. The way BLE works is by storing data on the server, which the client can access. Data is stored in a format … Read more

GCC Attributes Worth Learning

GCC Attributes Worth Learning

If you often look at the Linux source code, you must have seen the attribute attribute, which appears many times in Linux. The attribute is an extension of gcc and does not belong to standard C language. Using attributes can modify the properties of variables, functions, or data types, and there are many attributes, some … Read more