Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename files #147

Merged
merged 1 commit into from
Jun 14, 2024
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
File renamed without changes.
6 changes: 3 additions & 3 deletions edrumulus.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
#pragma once

#include "Arduino.h"
#include "edrumulus_pad.h"
#include "edrumulus_util.h"
#include "edrumulus_hardware.h"
#include "common.h"
#include "pad.h"
#include "hardware.h"


class Edrumulus
Expand Down
2 changes: 1 addition & 1 deletion edrumulus_hardware.cpp → hardware.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
\******************************************************************************/

#include "edrumulus_hardware.h"
#include "hardware.h"

Edrumulus_hardware* edrumulus_hardware_pointer = nullptr;

Expand Down
2 changes: 1 addition & 1 deletion edrumulus_hardware.h → hardware.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

#include "Arduino.h"
#include "EEPROM.h"
#include "edrumulus_util.h"
#include "common.h"


#define MAX_EEPROM_SIZE 512 // bytes (Teensy 4.0: max 1024 bytes)
Expand Down
2 changes: 1 addition & 1 deletion edrumulus_pad.cpp → pad.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
\******************************************************************************/

#include "edrumulus_pad.h"
#include "pad.h"


void Pad::setup ( const int conf_Fs )
Expand Down
4 changes: 2 additions & 2 deletions edrumulus_pad.h → pad.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

#pragma once

#include "edrumulus_hardware.h"
#include "edrumulus_util.h"
#include "common.h"
#include "hardware.h"


class Pad
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions edrumulus_signalprocessing.cpp → signalprocessing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
\******************************************************************************/

#include "edrumulus_util.h"
#include "edrumulus_pad.h"
#include "common.h"
#include "pad.h"


// Pad -------------------------------------------------------------------------
Expand Down
File renamed without changes.
Loading