Bluetooth BLE Advertising
This section only discusses Bluetooth BLE advertising.
For reference, see Bluetooth Core Specification V5.3, Volume 3, Host Part C. While advertising parameters relate to the controller layer, its sufficient to understand the meaning and configuration of advertising parameters; controller details are more complex.
Main Goals
Advertising parame ...
Posted on Sat, 06 Jun 2026 17:58:34 +0000 by ALEXKENT18
librtmp Source Code Examination
AMF Format Fundamentals
AMF (Action Message Format) is a binary protocol for serializing ActionScript data types. It exists in two versions: AMF0 (basic specification) and AMF3 (extended version).
AMF0 Data Types
typedef enum {
DT_NUMBER = 0,
DT_BOOLEAN,
DT_STRING,
DT_OBJECT,
DT_NULL,
DT_UNDEFINED,
DT_REFERENCE,
...
Posted on Sat, 16 May 2026 10:45:21 +0000 by hbalagh