Compare commits
No commits in common. "133f8e3768e19e288a60e514cbcc299fb5882836" and "e9666250435b332b7be1c1162d99a8fe4718843d" have entirely different histories.
133f8e3768
...
e966625043
18 changed files with 9 additions and 182 deletions
|
|
@ -1,7 +0,0 @@
|
||||||
add_library(module_name STATIC
|
|
||||||
module_name.c
|
|
||||||
)
|
|
||||||
|
|
||||||
target_include_directories(module_name PUBLIC
|
|
||||||
${CMAKE_CURRENT_LIST_DIR}
|
|
||||||
)
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
# TEST_RUNNER
|
|
||||||
add_library(test_module_name
|
|
||||||
test_module_name.cpp
|
|
||||||
)
|
|
||||||
|
|
||||||
target_link_libraries(test_module_name
|
|
||||||
${CPPUTEST_LIBRARIES}/libCppUTest.a
|
|
||||||
${CPPUTEST_LIBRARIES}/libCppUTestExt.a
|
|
||||||
module_name
|
|
||||||
)
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
/*
|
|
||||||
* Author: username
|
|
||||||
* Date: todays_date
|
|
||||||
* filename: module_name.c
|
|
||||||
* description: module_purpose
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "module_name.h"
|
|
||||||
|
|
||||||
// dumb test function
|
|
||||||
int add_two(int a)
|
|
||||||
{
|
|
||||||
int b = a;
|
|
||||||
b += 2;
|
|
||||||
return b;
|
|
||||||
}
|
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
/*
|
|
||||||
* Author: username
|
|
||||||
* Date: todays_date
|
|
||||||
* filename: module_name.h
|
|
||||||
* description: module_purpose
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef module_name
|
|
||||||
#define module_name
|
|
||||||
|
|
||||||
|
|
||||||
int add_two(int a);
|
|
||||||
|
|
||||||
#endif //module_name
|
|
||||||
|
|
@ -1,38 +0,0 @@
|
||||||
/*
|
|
||||||
* Author: username
|
|
||||||
* Date: todays_date
|
|
||||||
* filename: test_module_name.c
|
|
||||||
* description: module_purpose
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "CppUTest/CommandLineTestRunner.h"
|
|
||||||
|
|
||||||
extern "C"
|
|
||||||
{
|
|
||||||
#include "module_name.h"
|
|
||||||
}
|
|
||||||
|
|
||||||
TEST_GROUP(FirstTestGroup)
|
|
||||||
{
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
void teardown()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
TEST(FirstTestGroup, FirstTest)
|
|
||||||
{
|
|
||||||
FAIL("Fail me!");
|
|
||||||
}
|
|
||||||
|
|
||||||
TEST(FirstTestGroup, SecondTest)
|
|
||||||
{
|
|
||||||
STRCMP_EQUAL("hello", "world");
|
|
||||||
LONGS_EQUAL(1, 2);
|
|
||||||
CHECK(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
add_library(module_name STATIC
|
|
||||||
module_name.c
|
|
||||||
)
|
|
||||||
|
|
||||||
target_include_directories(module_name PUBLIC
|
|
||||||
${CMAKE_CURRENT_LIST_DIR}
|
|
||||||
)
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
# TEST_RUNNER
|
|
||||||
add_library(test_module_name
|
|
||||||
test_module_name.cpp
|
|
||||||
)
|
|
||||||
|
|
||||||
target_link_libraries(test_module_name
|
|
||||||
${CPPUTEST_LIBRARIES}/libCppUTest.a
|
|
||||||
${CPPUTEST_LIBRARIES}/libCppUTestExt.a
|
|
||||||
module_name
|
|
||||||
)
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
/*
|
|
||||||
* Author: username
|
|
||||||
* Date: todays_date
|
|
||||||
* filename: module_name.c
|
|
||||||
* description: module_purpose
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "module_name.h"
|
|
||||||
|
|
||||||
// dumb test function
|
|
||||||
int add_two(int a)
|
|
||||||
{
|
|
||||||
int b = a;
|
|
||||||
b += 2;
|
|
||||||
return b;
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
/**
|
|
||||||
* @brief PUT_TEXT_HERE
|
|
||||||
* @details This file is...
|
|
||||||
* @author username
|
|
||||||
* @date todays_date
|
|
||||||
* @copyright None
|
|
||||||
* @file module_name.h
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef module_name
|
|
||||||
#define module_name
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A function that adds two to a number
|
|
||||||
* @param a The first argument
|
|
||||||
*/
|
|
||||||
int add_two(int a);
|
|
||||||
|
|
||||||
#endif //module_name
|
|
||||||
|
|
@ -1,38 +0,0 @@
|
||||||
/*
|
|
||||||
* Author: username
|
|
||||||
* Date: todays_date
|
|
||||||
* filename: test_module_name.c
|
|
||||||
* description: module_purpose
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "CppUTest/CommandLineTestRunner.h"
|
|
||||||
|
|
||||||
extern "C"
|
|
||||||
{
|
|
||||||
#include "module_name.h"
|
|
||||||
}
|
|
||||||
|
|
||||||
TEST_GROUP(test_module_name)
|
|
||||||
{
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
void teardown()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
TEST(test_module_name, FirstTest)
|
|
||||||
{
|
|
||||||
FAIL("Fail me!");
|
|
||||||
}
|
|
||||||
|
|
||||||
TEST(test_module_name, SecondTest)
|
|
||||||
{
|
|
||||||
STRCMP_EQUAL("hello", "world");
|
|
||||||
LONGS_EQUAL(1, 2);
|
|
||||||
CHECK(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
#
|
#
|
||||||
#Sat Jul 27 12:25:33 PDT 2024
|
#Sat Jul 27 12:00:17 PDT 2024
|
||||||
attiny404.com-microchip-mplab-mdbcore-PK5Tool-PK5ToolImpl.md5=8ed9aa4326bfc0c1a849e697826741b7
|
attiny404.com-microchip-mplab-mdbcore-PK5Tool-PK5ToolImpl.md5=8ed9aa4326bfc0c1a849e697826741b7
|
||||||
attiny404.languagetoolchain.version=2.46
|
attiny404.languagetoolchain.version=2.46
|
||||||
attiny404.com-microchip-mplab-nbide-toolchain-xc8-XC8LanguageToolchain.md5=bf89cdcdd6c0a49174fe4b605ef2b42d
|
attiny404.com-microchip-mplab-nbide-toolchain-xc8-XC8LanguageToolchain.md5=bf89cdcdd6c0a49174fe4b605ef2b42d
|
||||||
conf.ids=,attiny404
|
conf.ids=,attiny404
|
||||||
host.id=2ov5-ff4p-rv
|
host.id=2ov5-ff4p-rv
|
||||||
configurations-xml=ad49d381d9f8f8cc8509eb7f94bc8af6
|
configurations-xml=635c55ff9add3625ec6ff71ce27eca38
|
||||||
com-microchip-mplab-nbide-embedded-makeproject-MakeProject.md5=f612087c95360c842296d189edfe3321
|
com-microchip-mplab-nbide-embedded-makeproject-MakeProject.md5=f612087c95360c842296d189edfe3321
|
||||||
attiny404.languagetoolchain.dir=/opt/microchip/xc8/v2.46/bin
|
attiny404.languagetoolchain.dir=/opt/microchip/xc8/v2.46/bin
|
||||||
proj.dir=/home/ronin/Documents/projects/freelance/laith_naaman/Low
|
proj.dir=/home/ronin/Documents/projects/freelance/laith_naaman/Low
|
||||||
|
|
|
||||||
|
|
@ -214,8 +214,6 @@
|
||||||
<property key="memories.programmemory" value="true"/>
|
<property key="memories.programmemory" value="true"/>
|
||||||
<property key="memories.programmemory.ranges" value="0-7ff"/>
|
<property key="memories.programmemory.ranges" value="0-7ff"/>
|
||||||
<property key="poweroptions.powerenable" value="true"/>
|
<property key="poweroptions.powerenable" value="true"/>
|
||||||
<property key="programmerToGoFilePath"
|
|
||||||
value="/home/ronin/Documents/projects/freelance/laith_naaman/Low/debug/default/fg004a_ptg"/>
|
|
||||||
<property key="programmerToGoImageName" value="fg004a_ptg"/>
|
<property key="programmerToGoImageName" value="fg004a_ptg"/>
|
||||||
<property key="programoptions.donoteraseauxmem" value="false"/>
|
<property key="programoptions.donoteraseauxmem" value="false"/>
|
||||||
<property key="programoptions.eraseb4program" value="true"/>
|
<property key="programoptions.eraseb4program" value="true"/>
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,11 @@
|
||||||
<project-private xmlns="http://www.netbeans.org/ns/project-private/1">
|
<project-private xmlns="http://www.netbeans.org/ns/project-private/1">
|
||||||
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
|
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
|
||||||
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
|
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
|
||||||
<group/>
|
<group>
|
||||||
|
<file>file:/home/ronin/Documents/projects/freelance/laith_naaman/fg004a_test.X/src/load/load.c</file>
|
||||||
|
<file>file:/home/ronin/Documents/projects/freelance/laith_naaman/fg004a_test.X/src/zero_cross_detection/zero_cross_detection.c</file>
|
||||||
|
<file>file:/home/ronin/Documents/projects/freelance/laith_naaman/fg004a_test.X/src/main.c</file>
|
||||||
|
<file>file:/home/ronin/Documents/projects/freelance/laith_naaman/fg004a_test.X/src/usart/usart.c</file>
|
||||||
|
</group>
|
||||||
</open-files>
|
</open-files>
|
||||||
</project-private>
|
</project-private>
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ TEST_GROUP(test_TriacOut)
|
||||||
{
|
{
|
||||||
void setup()
|
void setup()
|
||||||
{
|
{
|
||||||
//UT_PTR_SET(Delay_MicroSeconds, FakeDelay);
|
UT_PTR_SET(Delay_MicroSeconds, FakeDelay);
|
||||||
}
|
}
|
||||||
void teardown()
|
void teardown()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue