commit df556064d85e83047e671d4e885f6f0e59163b52 Author: willem Date: Thu Aug 12 11:44:15 2021 +0200 initial commit diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..529a15c Binary files /dev/null and b/.DS_Store differ diff --git a/CAD/.DS_Store b/CAD/.DS_Store new file mode 100644 index 0000000..aaa0725 Binary files /dev/null and b/CAD/.DS_Store differ diff --git a/CAD/Datasheet/5-way-KFC314_DataSheet.pdf b/CAD/Datasheet/5-way-KFC314_DataSheet.pdf new file mode 100644 index 0000000..70a072c Binary files /dev/null and b/CAD/Datasheet/5-way-KFC314_DataSheet.pdf differ diff --git a/CAD/Datasheet/Blackpill_Pinout.png b/CAD/Datasheet/Blackpill_Pinout.png new file mode 100644 index 0000000..3f15c62 Binary files /dev/null and b/CAD/Datasheet/Blackpill_Pinout.png differ diff --git a/CAD/Datasheet/MAX6675.pdf b/CAD/Datasheet/MAX6675.pdf new file mode 100644 index 0000000..8703e50 Binary files /dev/null and b/CAD/Datasheet/MAX6675.pdf differ diff --git a/reflow_plate_fw/.gitignore b/reflow_plate_fw/.gitignore new file mode 100644 index 0000000..89cc49c --- /dev/null +++ b/reflow_plate_fw/.gitignore @@ -0,0 +1,5 @@ +.pio +.vscode/.browse.c_cpp.db* +.vscode/c_cpp_properties.json +.vscode/launch.json +.vscode/ipch diff --git a/reflow_plate_fw/.vscode/extensions.json b/reflow_plate_fw/.vscode/extensions.json new file mode 100644 index 0000000..0f0d740 --- /dev/null +++ b/reflow_plate_fw/.vscode/extensions.json @@ -0,0 +1,7 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ] +} diff --git a/reflow_plate_fw/include/README b/reflow_plate_fw/include/README new file mode 100644 index 0000000..194dcd4 --- /dev/null +++ b/reflow_plate_fw/include/README @@ -0,0 +1,39 @@ + +This directory is intended for project header files. + +A header file is a file containing C declarations and macro definitions +to be shared between several project source files. You request the use of a +header file in your project source file (C, C++, etc) located in `src` folder +by including it, with the C preprocessing directive `#include'. + +```src/main.c + +#include "header.h" + +int main (void) +{ + ... +} +``` + +Including a header file produces the same results as copying the header file +into each source file that needs it. Such copying would be time-consuming +and error-prone. With a header file, the related declarations appear +in only one place. If they need to be changed, they can be changed in one +place, and programs that include the header file will automatically use the +new version when next recompiled. The header file eliminates the labor of +finding and changing all the copies as well as the risk that a failure to +find one copy will result in inconsistencies within a program. + +In C, the usual convention is to give header files names that end with `.h'. +It is most portable to use only letters, digits, dashes, and underscores in +header file names, and at most one dot. + +Read more about using header files in official GCC documentation: + +* Include Syntax +* Include Operation +* Once-Only Headers +* Computed Includes + +https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html diff --git a/reflow_plate_fw/lib/README b/reflow_plate_fw/lib/README new file mode 100644 index 0000000..6debab1 --- /dev/null +++ b/reflow_plate_fw/lib/README @@ -0,0 +1,46 @@ + +This directory is intended for project specific (private) libraries. +PlatformIO will compile them to static libraries and link into executable file. + +The source code of each library should be placed in a an own separate directory +("lib/your_library_name/[here are source files]"). + +For example, see a structure of the following two libraries `Foo` and `Bar`: + +|--lib +| | +| |--Bar +| | |--docs +| | |--examples +| | |--src +| | |- Bar.c +| | |- Bar.h +| | |- library.json (optional, custom build options, etc) https://docs.platformio.org/page/librarymanager/config.html +| | +| |--Foo +| | |- Foo.c +| | |- Foo.h +| | +| |- README --> THIS FILE +| +|- platformio.ini +|--src + |- main.c + +and a contents of `src/main.c`: +``` +#include +#include + +int main (void) +{ + ... +} + +``` + +PlatformIO Library Dependency Finder will find automatically dependent +libraries scanning project source files. + +More information about PlatformIO Library Dependency Finder +- https://docs.platformio.org/page/librarymanager/ldf.html diff --git a/reflow_plate_fw/platformio.ini b/reflow_plate_fw/platformio.ini new file mode 100644 index 0000000..b9e1f51 --- /dev/null +++ b/reflow_plate_fw/platformio.ini @@ -0,0 +1,17 @@ +; PlatformIO Project Configuration File +; +; Build options: build flags, source filter +; Upload options: custom upload port, speed and extra flags +; Library options: dependencies, extra library storages +; Advanced options: extra scripting +; +; Please visit documentation for the other options and examples +; https://docs.platformio.org/page/projectconf.html + +[env:blackpill_f411ce] +platform = ststm32 +board = blackpill_f411ce +framework = arduino +lib_deps = + adafruit/MAX6675 library@^1.1.0 + adafruit/Adafruit SSD1306@^2.4.6 diff --git a/reflow_plate_fw/src/board.h b/reflow_plate_fw/src/board.h new file mode 100644 index 0000000..504ca6f --- /dev/null +++ b/reflow_plate_fw/src/board.h @@ -0,0 +1,17 @@ +#pragma once + + +#define LCD_SDA PB3 +#define LCD_SCL PB6 + +#define THERM_CS PA4 +#define THERM_DO PA7 +#define THERM_CL PA6 + +#define BUt_LEFT PB15 +#define BUt_RIGHT PA10 +#define BUT_UP PA11 +#define BUT_DOWN PA9 +#define BUT_CENTER PA8 + +#define HEAT_OUT PA2 \ No newline at end of file diff --git a/reflow_plate_fw/src/button.cpp b/reflow_plate_fw/src/button.cpp new file mode 100644 index 0000000..660e566 --- /dev/null +++ b/reflow_plate_fw/src/button.cpp @@ -0,0 +1,10 @@ +#include "button.h" + +void initButton(void) +{ + +} +void handleButton(void) +{ + +} \ No newline at end of file diff --git a/reflow_plate_fw/src/button.h b/reflow_plate_fw/src/button.h new file mode 100644 index 0000000..c1c4b25 --- /dev/null +++ b/reflow_plate_fw/src/button.h @@ -0,0 +1,7 @@ +#pragma once + +#include "Arduino.h" +#include "board.h" + +void initButton(void); +void handleButton(void); \ No newline at end of file diff --git a/reflow_plate_fw/src/heater.cpp b/reflow_plate_fw/src/heater.cpp new file mode 100644 index 0000000..48f7bab --- /dev/null +++ b/reflow_plate_fw/src/heater.cpp @@ -0,0 +1,12 @@ +#include "heater.h" + + +void initHeater(void) +{ + +} + +void handleHeater(void) +{ + +} \ No newline at end of file diff --git a/reflow_plate_fw/src/heater.h b/reflow_plate_fw/src/heater.h new file mode 100644 index 0000000..ac51586 --- /dev/null +++ b/reflow_plate_fw/src/heater.h @@ -0,0 +1,7 @@ +#pragma once + +#include "Arduino.h" +#include "board.h" + +void initHeater(void); +void handleHeater(void); \ No newline at end of file diff --git a/reflow_plate_fw/src/lcd.cpp b/reflow_plate_fw/src/lcd.cpp new file mode 100644 index 0000000..b24fd22 --- /dev/null +++ b/reflow_plate_fw/src/lcd.cpp @@ -0,0 +1,12 @@ +#include "lcd.h" + + +void initLCD(void) +{ + +} + +void handleLCD(void) +{ + +} \ No newline at end of file diff --git a/reflow_plate_fw/src/lcd.h b/reflow_plate_fw/src/lcd.h new file mode 100644 index 0000000..a20d910 --- /dev/null +++ b/reflow_plate_fw/src/lcd.h @@ -0,0 +1,6 @@ +#include "Arduino.h" +#include "board.h" + + +void initLCD(void); +void handleLCD(void); diff --git a/reflow_plate_fw/src/main.cpp b/reflow_plate_fw/src/main.cpp new file mode 100644 index 0000000..c5a006b --- /dev/null +++ b/reflow_plate_fw/src/main.cpp @@ -0,0 +1,24 @@ +#include +#include "board.h" + +#include "lcd.h" +#include "thermo.h" +#include "button.h" +#include "heater.h" + +void setup() { + // put your setup code here, to run once: + initLCD(); + initThermo(); + initButton(); + initHeater(); + +} + +void loop() { + // put your main code here, to run repeatedly: + handleLCD(); + handleThermo(); + handleButton(); + handleHeater(); +} \ No newline at end of file diff --git a/reflow_plate_fw/src/thermo.cpp b/reflow_plate_fw/src/thermo.cpp new file mode 100644 index 0000000..7af83c7 --- /dev/null +++ b/reflow_plate_fw/src/thermo.cpp @@ -0,0 +1,12 @@ +#include "thermo.h" + + +void initThermo(void) +{ + +} + +void handleThermo(void) +{ + +} \ No newline at end of file diff --git a/reflow_plate_fw/src/thermo.h b/reflow_plate_fw/src/thermo.h new file mode 100644 index 0000000..d285d1f --- /dev/null +++ b/reflow_plate_fw/src/thermo.h @@ -0,0 +1,7 @@ +#pragma once + +#include "Arduino.h" +#include "board.h" + +void initThermo(void); +void handleThermo(void); \ No newline at end of file diff --git a/reflow_plate_fw/test/README b/reflow_plate_fw/test/README new file mode 100644 index 0000000..b94d089 --- /dev/null +++ b/reflow_plate_fw/test/README @@ -0,0 +1,11 @@ + +This directory is intended for PlatformIO Unit Testing and project tests. + +Unit Testing is a software testing method by which individual units of +source code, sets of one or more MCU program modules together with associated +control data, usage procedures, and operating procedures, are tested to +determine whether they are fit for use. Unit testing finds problems early +in the development cycle. + +More information about PlatformIO Unit Testing: +- https://docs.platformio.org/page/plus/unit-testing.html