organize: moved include files to inc/

This commit is contained in:
A.M. Rowsell 2025-08-28 10:45:41 -04:00
commit 22fe7bdf0b
Signed by untrusted user who does not match committer: amr
GPG key ID: E0879EDBDB0CA7B1
7 changed files with 7 additions and 7 deletions

View file

@ -6,7 +6,7 @@
// This Source Code Form is "Incompatible With Secondary Licenses", as
// defined by the Mozilla Public License, v. 2.0.
#include "Board.hpp"
#include "inc/Board.hpp"
#include "inc/strFuncs.hpp"
/*
@ -40,7 +40,7 @@ Board::~Board() {
void Board::setupInitialPosition() {
// set up the board grid with smart pointers
// initialize each square with a Piece
// initialize each square with a Piece or nullptr
playerTurn = PL_WHITE;
for(int i = 0; i < 8; i++) {
switch(i) {

View file

@ -6,7 +6,7 @@
// This Source Code Form is "Incompatible With Secondary Licenses", as
// defined by the Mozilla Public License, v. 2.0.
#include "NeoPixel.hpp"
#include "inc/NeoPixel.hpp"
uint8_t setNeoPixel(uint8_t index, uint8_t red, uint8_t green, uint8_t blue) {
return 0;

View file

@ -6,7 +6,7 @@
// This Source Code Form is "Incompatible With Secondary Licenses", as
// defined by the Mozilla Public License, v. 2.0.
#include "Piece.hpp"
#include "inc/Piece.hpp"
Piece::~Piece() {
return;

View file

@ -49,9 +49,9 @@
#include <sys/attribs.h> // for ISR macros
#include <sys/kmem.h>
#include "Board.hpp"
#include "Piece.hpp"
#include "NeoPixel.hpp"
#include "inc/Board.hpp"
#include "inc/Piece.hpp"
#include "inc/NeoPixel.hpp"
#define F_CPU 12000000UL // 12MHz
#define F_PER 6000000UL // 6MHz