hal_entry Function

hal_entry Function

10.2.3 hal_entry Function When using an RTOS, the program starts thread scheduling from the main function; when not using an RTOS, the entry function of a C program, the main function, calls the hal_entry function. Since our newly created project does not use an RTOS, the user program starts execution from the hal_entry function. We … Read more

Writing Your Own Library: Building a Library Function Prototype

Writing Your Own Library: Building a Library Function Prototype

Chapter 8 Writing Your Own Library – Building a Library Function Prototype In fact, building a firmware library is a time-consuming and labor-intensive task, and it requires a certain level of familiarity with the chip from the developer. Even when a firmware library is highly encapsulated, reading and understanding the underlying code of that library … Read more