Skip to content
Merged
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
13 changes: 3 additions & 10 deletions Devices/btt-panda-touch/source/module.cpp
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
#include <tactility/error.h>
#include <tactility/module.h>

extern "C" {

static error_t start() {
return ERROR_NONE;
}

static error_t stop() {
return ERROR_NONE;
}

struct Module btt_panda_touch_module = {
.name = "btt-panda-touch",
.start = start,
.stop = stop,
.start = [] -> error_t { return ERROR_NONE; },
.stop = [] -> error_t { return ERROR_NONE; },
.symbols = nullptr,
.internal = nullptr
};
Expand Down
13 changes: 3 additions & 10 deletions Devices/cyd-2432s024c/source/module.cpp
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
#include <tactility/error.h>
#include <tactility/module.h>

extern "C" {

static error_t start() {
return ERROR_NONE;
}

static error_t stop() {
return ERROR_NONE;
}

Module cyd_2432s024c_module = {
.name = "cyd-2432s024c",
.start = start,
.stop = stop,
.start = [] -> error_t { return ERROR_NONE; },
.stop = [] -> error_t { return ERROR_NONE; },
.symbols = nullptr,
.internal = nullptr
};
Expand Down
13 changes: 3 additions & 10 deletions Devices/cyd-2432s024r/source/module.cpp
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
#include <tactility/error.h>
#include <tactility/module.h>

extern "C" {

static error_t start() {
return ERROR_NONE;
}

static error_t stop() {
return ERROR_NONE;
}

struct Module cyd_2432s024r_module = {
.name = "cyd-2432s024r",
.start = start,
.stop = stop,
.start = [] -> error_t { return ERROR_NONE; },
.stop = [] -> error_t { return ERROR_NONE; },
.symbols = nullptr,
.internal = nullptr
};
Expand Down
13 changes: 3 additions & 10 deletions Devices/cyd-2432s028r/source/module.cpp
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
#include <tactility/error.h>
#include <tactility/module.h>

extern "C" {

static error_t start() {
return ERROR_NONE;
}

static error_t stop() {
return ERROR_NONE;
}

struct Module cyd_2432s028r_module = {
.name = "cyd-2432s028r",
.start = start,
.stop = stop,
.start = [] -> error_t { return ERROR_NONE; },
.stop = [] -> error_t { return ERROR_NONE; },
.symbols = nullptr,
.internal = nullptr
};
Expand Down
13 changes: 3 additions & 10 deletions Devices/cyd-2432s028rv3/source/module.cpp
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
#include <tactility/error.h>
#include <tactility/module.h>

extern "C" {

static error_t start() {
return ERROR_NONE;
}

static error_t stop() {
return ERROR_NONE;
}

struct Module cyd_2432s028rv3_module = {
.name = "cyd-2432s028rv3",
.start = start,
.stop = stop,
.start = [] -> error_t { return ERROR_NONE; },
.stop = [] -> error_t { return ERROR_NONE; },
.symbols = nullptr,
.internal = nullptr
};
Expand Down
15 changes: 4 additions & 11 deletions Devices/cyd-2432s032c/source/module.cpp
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
#include <tactility/error.h>
#include <tactility/module.h>

extern "C" {

static error_t start() {
return ERROR_NONE;
}

static error_t stop() {
return ERROR_NONE;
}

struct Module cyd_2432s032c_module = {
Module cyd_2432s032c_module = {
.name = "cyd-2432s032c",
.start = start,
.stop = stop,
.start = [] -> error_t { return ERROR_NONE; },
.stop = [] -> error_t { return ERROR_NONE; },
.symbols = nullptr,
.internal = nullptr
};
Expand Down
15 changes: 4 additions & 11 deletions Devices/cyd-3248s035c/source/module.cpp
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
#include <tactility/error.h>
#include <tactility/module.h>

extern "C" {

static error_t start() {
return ERROR_NONE;
}

static error_t stop() {
return ERROR_NONE;
}

struct Module cyd_3248s035c_module = {
Module cyd_3248s035c_module = {
.name = "cyd-3248s035c",
.start = start,
.stop = stop,
.start = [] -> error_t { return ERROR_NONE; },
.stop = [] -> error_t { return ERROR_NONE; },
.symbols = nullptr,
.internal = nullptr
};
Expand Down
15 changes: 4 additions & 11 deletions Devices/cyd-4848s040c/source/module.cpp
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
#include <tactility/error.h>
#include <tactility/module.h>

extern "C" {

static error_t start() {
return ERROR_NONE;
}

static error_t stop() {
return ERROR_NONE;
}

struct Module cyd_4848s040c_module = {
Module cyd_4848s040c_module = {
.name = "cyd-4848s040c",
.start = start,
.stop = stop,
.start = [] -> error_t { return ERROR_NONE; },
.stop = [] -> error_t { return ERROR_NONE; },
.symbols = nullptr,
.internal = nullptr
};
Expand Down
15 changes: 4 additions & 11 deletions Devices/cyd-8048s043c/source/module.cpp
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
#include <tactility/error.h>
#include <tactility/module.h>

extern "C" {

static error_t start() {
return ERROR_NONE;
}

static error_t stop() {
return ERROR_NONE;
}

struct Module cyd_8048s043c_module = {
Module cyd_8048s043c_module = {
.name = "cyd-8048s043c",
.start = start,
.stop = stop,
.start = [] -> error_t { return ERROR_NONE; },
.stop = [] -> error_t { return ERROR_NONE; },
.symbols = nullptr,
.internal = nullptr
};
Expand Down
15 changes: 4 additions & 11 deletions Devices/cyd-e32r28t/source/module.cpp
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
#include <tactility/error.h>
#include <tactility/module.h>

extern "C" {

static error_t start() {
return ERROR_NONE;
}

static error_t stop() {
return ERROR_NONE;
}

struct Module cyd_e32r28t_module = {
Module cyd_e32r28t_module = {
.name = "cyd-e32r28t",
.start = start,
.stop = stop,
.start = [] -> error_t { return ERROR_NONE; },
.stop = [] -> error_t { return ERROR_NONE; },
.symbols = nullptr,
.internal = nullptr
};
Expand Down
15 changes: 4 additions & 11 deletions Devices/cyd-e32r32p/source/module.cpp
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
#include <tactility/error.h>
#include <tactility/module.h>

extern "C" {

static error_t start() {
return ERROR_NONE;
}

static error_t stop() {
return ERROR_NONE;
}

struct Module cyd_e32r32p_module = {
Module cyd_e32r32p_module = {
.name = "cyd-e32r32p",
.start = start,
.stop = stop,
.start = [] -> error_t { return ERROR_NONE; },
.stop = [] -> error_t { return ERROR_NONE; },
.symbols = nullptr,
.internal = nullptr
};
Expand Down
15 changes: 4 additions & 11 deletions Devices/elecrow-crowpanel-advance-28/source/module.cpp
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
#include <tactility/error.h>
#include <tactility/module.h>

extern "C" {

static error_t start() {
return ERROR_NONE;
}

static error_t stop() {
return ERROR_NONE;
}

struct Module elecrow_crowpanel_advance_28_module = {
Module elecrow_crowpanel_advance_28_module = {
.name = "elecrow-crowpanel-advance-28",
.start = start,
.stop = stop,
.start = [] -> error_t { return ERROR_NONE; },
.stop = [] -> error_t { return ERROR_NONE; },
.symbols = nullptr
};

Expand Down
13 changes: 3 additions & 10 deletions Devices/elecrow-crowpanel-advance-35/source/module.cpp
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
#include <tactility/error.h>
#include <tactility/module.h>

extern "C" {

static error_t start() {
return ERROR_NONE;
}

static error_t stop() {
return ERROR_NONE;
}

Module elecrow_crowpanel_advance_35_module = {
.name = "elecrow-crowpanel-advance-35",
.start = start,
.stop = stop,
.start = [] -> error_t { return ERROR_NONE; },
.stop = [] -> error_t { return ERROR_NONE; },
.symbols = nullptr,
.internal = nullptr
};
Expand Down
15 changes: 4 additions & 11 deletions Devices/elecrow-crowpanel-advance-50/source/module.cpp
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
#include <tactility/error.h>
#include <tactility/module.h>

extern "C" {

static error_t start() {
return ERROR_NONE;
}

static error_t stop() {
return ERROR_NONE;
}

struct Module elecrow_crowpanel_advance_50_module = {
Module elecrow_crowpanel_advance_50_module = {
.name = "elecrow-crowpanel-advance-50",
.start = start,
.stop = stop,
.start = [] -> error_t { return ERROR_NONE; },
.stop = [] -> error_t { return ERROR_NONE; },
.symbols = nullptr,
.internal = nullptr
};
Expand Down
15 changes: 4 additions & 11 deletions Devices/elecrow-crowpanel-basic-28/source/module.cpp
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
#include <tactility/error.h>
#include <tactility/module.h>

extern "C" {

static error_t start() {
return ERROR_NONE;
}

static error_t stop() {
return ERROR_NONE;
}

struct Module elecrow_crowpanel_basic_28_module = {
Module elecrow_crowpanel_basic_28_module = {
.name = "elecrow-crowpanel-basic-28",
.start = start,
.stop = stop,
.start = [] -> error_t { return ERROR_NONE; },
.stop = [] -> error_t { return ERROR_NONE; },
.symbols = nullptr,
.internal = nullptr
};
Expand Down
13 changes: 3 additions & 10 deletions Devices/elecrow-crowpanel-basic-35/source/module.cpp
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
#include <tactility/error.h>
#include <tactility/module.h>

extern "C" {

static error_t start() {
return ERROR_NONE;
}

static error_t stop() {
return ERROR_NONE;
}

Module elecrow_crowpanel_basic_35_module = {
.name = "elecrow-crowpanel-basic-35",
.start = start,
.stop = stop,
.start = [] -> error_t { return ERROR_NONE; },
.stop = [] -> error_t { return ERROR_NONE; },
.symbols = nullptr,
.internal = nullptr
};
Expand Down
Loading
Loading