CW10 Weekly Digest
Table of Contents
Embedded skills
Linker scripts
Linker scripts are mostly needed for bare-metal development - to specify the memory layout -> Stack Overflow
Resources:
The GNU linker
GCC linker script and STM32
Example
For this example, let's say that the code should be
loaded at address 0x10000 and that the data should
start at address 0x8000000. Here is a linker script
which will do that:
SECTIONS
{
. = 0x10000;
.text : { *(.text) }
. = 0x8000000;
.data : { *(.data) }
.bss : { *(.bss) }
}
Embedded Linux Development
Here I’ve found a course about Yocto and Buildroot. I’ve met a few vacancies with these tools as a requirement for SW Engineer, so I think ith worth taking
Coursera Embedded Linux Course
Soft skills
What can I include as a self-presentation
- Social media
- Education
- Certifications
- Job position and responsibilities
- Hobbies (+ animals, sports)
- Books
- Last film or serial
- Games
- Blog
This could impact on different types of people. Probably I can listen to other’s presentations and pick something that interesting to me.