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:
commit
9b33e1ca92
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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;
|
||||
|
@ -19,6 +19,7 @@
|
||||
#include <stdio.h>
|
||||
#include "assert.h"
|
||||
#include "frac.h"
|
||||
#include "bitarithm.h"
|
||||
|
||||
#define ENABLE_DEBUG (0)
|
||||
#include "debug.h"
|
||||
|
Loading…
Reference in New Issue
Block a user