This file contains hidden or 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 <QObject> | |
| #include <QState> | |
| #include <QStateMachine> | |
| #include <QThread> | |
| #include <QApplication> | |
| #include <QDebug> | |
| #include <QTimer> | |
| // Worker Object | |
| class Worker : public QStateMachine |
This file contains hidden or 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
| #ifndef cbi | |
| #define cbi(sfr, bit) (_SFR_BYTE(sfr) &= ~_BV(bit)) | |
| #endif | |
| #ifndef sbi | |
| #define sbi(sfr, bit) (_SFR_BYTE(sfr) |= _BV(bit)) | |
| #endif | |
| #include <avr/pgmspace.h> | |
| unsigned char byte_n = 0; // byte count |
This file contains hidden or 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
| " | |
| " VIM Configuration | |
| " | |
| " Anton Loukianov | |
| " | |
| " Updated 2 Mar 2011 | |
| " Turn off compatible mode | |
| set nocompatible |
This file contains hidden or 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
| Index: ./ | |
| =================================================================== | |
| --- configure (revision 70960) | |
| +++ configure (revision 71086) | |
| @@ -51726,5 +51726,65 @@ | |
| EXTRA_FRAMEWORKS="-framework IOKit -framework UIKit -framework CFNetwork -framework AudioToolbox -framework CoreFoundation -framework CoreGraphics -framework OpenGLES -framework Foundation -framework QuartzCore" | |
| else | |
| - EXTRA_FRAMEWORKS="-framework IOKit -framework Carbon -framework Cocoa -framework AudioToolbox -framework System -framework OpenGL -framework QuickTime" | |
| + EXTRA_FRAMEWORKS="-framework IOKit -framework Carbon -framework Cocoa -framework AudioToolbox -framework System -framework OpenGL" | |
| + |
NewerOlder