Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .mcuxpressoide_packages_support/info.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#MCUXpresso IDE
#Mon Sep 04 18:51:32 CDT 2023
#Wed Sep 13 19:13:40 CDT 2023
product.name=MCUXpresso IDE v11.7.0 [Build 9198] [2023-01-17]
product.version=11.7.0
product.build=9198
7 changes: 6 additions & 1 deletion Firmware/project_1/src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
* This is where your main program code lives. On reset, after some basic
* initialization code is run, main() is called.
*/
Expand Down Expand Up @@ -98,6 +98,11 @@ int main() {
//task 1
if(timing.tickThreshold(last_task_1_time, TASK_1_RATE_US)){
//PROJECT 1 - add code here to actually make the LED blink
if(led1.read()){ //returns 1 if LED is on, if so, sets pinout to logical zero, else, sets pinout to logical one
led1.write(0);
} else {
led1.write(1);
}
}


Expand Down
2,084 changes: 2,084 additions & 0 deletions Hardware/LED_Project/LED_Project.kicad_pcb

Large diffs are not rendered by default.

Loading