• System call excepton handler about  the svc stack in the linux
    I am studying System call in the linux. I know that is using SVC exception handler. the related codes are as follow ====================exception handler codes=================================== ENTRY...
  • Should BLE (now called Bluetooth Smart) be the backbone of IoT?
    Bluetooth Smart (formerly Wibri and then BLE) is being positioned as the likely backbone of IoT device communications. But, it has some serious limitations that call that concept into question: 1. It...
  • Combining function attributes in C
    Hello everyone, Can anyone help me how do I combine function attributes? I need to use __attribute__(used) and __attribute__(section("xuz")) function attributes while defining a function. Thanks...
  • c++ virtual function override problem
    Hi, recently i write a c++ code and have a problem with using virtual function this is a code, class Base { publc : virtual ~Base() {} virtual void Set (void) = 0; // pure virutal fuunction...
  • AEABI Library: Floating Point functions
    How is floating point overflow handled in aeabi library functions such as __aeabi_fadd? Does the function return a pre-defined value? Or does it update any registers?