Set debug_build_flags in platformio.ini
By default PlatformIO sets the debug_build_flags to "-O0 -ggdb3 -g3"
(https://docs.platformio.org/en/latest/projectconf/section_env_debug.html#debug-build-flags)
This makes the bootloader to big to fit in the space allowed.
Changing it to "-Os -ggdb -g3", like the normal build flags, shrinks
the bootloader in so it fits and allows the Visual Studio Code's
debugger to step through the code.