diff options
| author | Joel Challis | 2024-09-02 04:48:17 +0200 |
|---|---|---|
| committer | GitHub | 2024-09-02 04:48:17 +0200 |
| commit | 3bd303f204a59ed950934f5da4c299a8be33b363 (patch) | |
| tree | 17ff660931b925909be4a75fba55bd67441bf2bb /quantum | |
| parent | 096aca63c5d7789669d90ef5f128189be85b7a35 (diff) | |
Remove `arm_atsam` platform (#24337)
Diffstat (limited to 'quantum')
| -rw-r--r-- | quantum/basic_profiling.h | 2 | ||||
| -rw-r--r-- | quantum/logging/debug.h | 5 |
2 files changed, 1 insertions, 6 deletions
diff --git a/quantum/basic_profiling.h b/quantum/basic_profiling.h index d371acd6f0..e0a88d49cf 100644 --- a/quantum/basic_profiling.h +++ b/quantum/basic_profiling.h @@ -25,8 +25,6 @@ # define TIMESTAMP_GETTER TCNT0 #elif defined(PROTOCOL_CHIBIOS) # define TIMESTAMP_GETTER chSysGetRealtimeCounterX() -#elif defined(PROTOCOL_ARM_ATSAM) -# error arm_atsam not currently supported #else # error Unknown protocol in use #endif diff --git a/quantum/logging/debug.h b/quantum/logging/debug.h index d0590474c0..b0d9b9a10e 100644 --- a/quantum/logging/debug.h +++ b/quantum/logging/debug.h @@ -17,10 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #pragma once -#ifndef PROTOCOL_ARM_ATSAM -# include <stdio.h> -#endif - +#include <stdio.h> #include <stdbool.h> #include "print.h" |