Welcome to mirror list, hosted at ThFree Co, Russian Federation.

platforms.h - github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b34ddc0d2145ae6f0f8a1459b6ff2980d370416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __INC_PLATFORMS_H
#define __INC_PLATFORMS_H

#include "fastled_config.h"

#if defined(__MK20DX128__) || defined(__MK20DX256__)
// Include k20/T3 headers
#include "platforms/arm/k20/fastled_arm_k20.h"
#elif defined(__SAM3X8E__)
// Include sam/due headers
#include "platforms/arm/sam/fastled_arm_sam.h"
#else
// AVR platforms
#include "platforms/avr/fastled_avr.h"
#endif

#endif