[Clock Issues] `_delay_ms(int)` from `util/delay.h` isn't working as expected on arduino UNO (atmega328p) w/ 16MHZ external crystal on the [HelloBlink](https://github.com/Software-Hardware-Codesign/AVR-Sandbox/blob/master/HelloBlink/main/libs/HelloBlink.c) example. Steps to fix this: 1) Define a [F_CPU](https://software-hardware-codesign.github.io/AVR-Sandbox/docs/avr-libc/avr-libc-user-manual/group__util__delay.html) to auto support external and internal resonators. 2) Add -O2 for [optimizations level 2](https://software-hardware-codesign.github.io/AVR-Sandbox/docs/avr-libc/avr-libc-user-manual/using__tools.html) for the avr-gcc. 3) Document the changes in the [README.md](https://github.com/Software-Hardware-Codesign/AVR-Sandbox/blob/master/HelloBlink/readMe.md) file.
[Clock Issues]
_delay_ms(int)fromutil/delay.hisn't working as expected on arduino UNO (atmega328p) w/ 16MHZ external crystal on the HelloBlink example.Steps to fix this: