1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 17:25:20 +03:00

Converted tabs to spaces

This commit is contained in:
Martin Budden 2016-06-16 11:47:02 +01:00
parent d09a1ca9f8
commit 9b70771539
4 changed files with 40 additions and 40 deletions

View file

@ -4,11 +4,11 @@
#include "common/utils.h"
enum rcc_reg {
RCC_EMPTY = 0, // make sure that default value (0) does not enable anything
RCC_AHB,
RCC_APB2,
RCC_APB1,
RCC_AHB1,
RCC_EMPTY = 0, // make sure that default value (0) does not enable anything
RCC_AHB,
RCC_APB2,
RCC_APB1,
RCC_AHB1,
};
#define RCC_ENCODE(reg, mask) (((reg) << 5) | LOG2_32BIT(mask))