April 2020
Intermediate to advanced
294 pages
7h 53m
English
Compiling the kernel requires us to execute just a couple of commands that will run the make file on our MicroPython port. Before attempting to invoke the make file, let's first return to the ports/stm32/ folder in the Terminal. I recommend that you clean any previously compiled versions of the kernel by executing the following command:
make clean BOARD=B_L475E_IOT01A
Once this has been done, we would normally just execute the following statement in order to compile our kernel:
make BOARD=B_L475E_IOT01A
In this case, using this command will not include the modules that we want to include in the kernel. We must tell the compiler to include these modules in the kernel and tell it where they are located. We can do ...
Read now
Unlock full access