1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #13271 from kfessel/patch-shed

core/sched: sched.h: remove not needed bitarithm include to avoid conflict
This commit is contained in:
benpicco 2020-02-05 14:44:08 +01:00 committed by GitHub
commit 9b33e1ca92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 2 deletions

View File

@ -82,7 +82,6 @@
#include <stddef.h>
#include "kernel_defines.h"
#include "bitarithm.h"
#include "kernel_types.h"
#include "native_sched.h"
#include "clist.h"

View File

@ -31,6 +31,7 @@
#include "periph/usbdev.h"
#include "usb.h"
#include "usb/descriptor.h"
#include "bitarithm.h"
#define ENABLE_DEBUG (0)
#include "debug.h"

View File

@ -32,7 +32,8 @@
* effects, but simplifies the code. (This bit is always set on SAML21xxxxA)
*/
#ifndef RTC_MODE0_CTRLA_COUNTSYNC
#define RTC_MODE0_CTRLA_COUNTSYNC BIT15
#define RTC_MODE0_CTRLA_COUNTSYNC_Pos 15
#define RTC_MODE0_CTRLA_COUNTSYNC (0x1ul << RTC_MODE0_CTRLA_COUNTSYNC_Pos)
#endif
static rtt_cb_t _overflow_cb;

View File

@ -19,6 +19,7 @@
#include <stdio.h>
#include "assert.h"
#include "frac.h"
#include "bitarithm.h"
#define ENABLE_DEBUG (0)
#include "debug.h"