8000 Use F_CPU if (?) CPU frequency switch is compile-time only by dok-net · Pull Request #6833 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Use F_CPU if (?) CPU frequency switch is compile-time only #6833

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Apr 15, 2020
Prev Previous commit
Next Next commit
Geting the include order right
  • Loading branch information
dok-net committed Apr 11, 2020
commit eba004216f1f4958be0fced10c36cf9939710c4b
8 changes: 4 additions & 4 deletions tests/host/common/mock.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ typedef uint32_t uint32;

//

#include <Arduino.h>

//

#include <stdlib.h>
#define RANDOM_REG32 ((uint32_t)random())

Expand Down Expand Up @@ -164,10 +168,6 @@ void mock_stop_littlefs ();

//

#include <Arduino.h>

//

#include <common/esp8266_peri.h>

//
Expand Down
0