This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From a2331af9a7930fb52109d46e00b1be85711d8b5a Mon Sep 17 00:00:00 2001 | |
From: Alexander Vostres <[email protected]> | |
Date: Sun, 29 Apr 2018 21:57:56 +0300 | |
Subject: [PATCH] Fix Windows x86 | |
--- | |
build32.bat | 2 + | |
build32dbg.bat | 2 + | |
build64.bat | 2 + | |
build64dbg.bat | 2 + |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Adafruit_NeoPixel.h> | |
#ifdef __AVR__ | |
#include <avr/power.h> | |
#endif | |
#define PIXELS 20 | |
#define PIN 6 | |
#define IN_0 3 | |
#define IN_1 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//This test has dependency on "PeculiarEnum" and "CharEnum" types that look like: | |
//.class public auto ansi sealed BoolEnumTest.PeculiarEnum extends [mscorlib]System.Enum | |
//{ | |
// .field public specialname rtspecialname bool value__ | |
// .field public static literal valuetype BoolEnumTest.PeculiarEnum A = bool(false) | |
// .field public static literal valuetype BoolEnumTest.PeculiarEnum B = bool(true) | |
//} | |
// | |
//.class public auto ansi sealed BoolEnumTest.CharEnum extends [mscorlib]System.Enum | |
//{ |