-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! sys/new_delete: add malloc/free based new/delete implementation
- Loading branch information
Showing
12 changed files
with
24 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
pkg/arduino_lis3dh/Makefile → pkg/arduino_adafruit_lis3dh/Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
PSEUDOMODULES += arduino_adafruit_lis3dh_i2c | ||
PSEUDOMODULES += arduino_adafruit_lis3dh_spi | ||
|
||
INCLUDES += -I$(PKGDIRBASE)/arduino_adafruit_lis3dh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/** | ||
* @defgroup pkg_arduino_lis3dh Arduino Library for Adafruit LIS3DH breakout module | ||
* @ingroup pkg | ||
* @brief Arduino driver package for the Adafruit Adafruit LIS3DH | ||
* Triple-Axis Accelerometer breakout with ST LIS3DH sensor | ||
* @see https://github.com/adafruit/Adafruit_LIS3DH.git | ||
*/ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
tests/pkg_arduino_lis3dh/Makefile → tests/pkg_arduino_adafruit_lis3dh/Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
include ../Makefile.tests_common | ||
|
||
DRIVER ?= arduino_lis3dh_i2c | ||
DRIVER ?= arduino_adafruit_lis3dh_i2c | ||
|
||
USEPKG += arduino_lis3dh | ||
USEPKG += arduino_adafruit_lis3dh | ||
USEMODULE += $(DRIVER) | ||
|
||
include $(RIOTBASE)/Makefile.include |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
tests/pkg_arduino_lis3dh/app.config.test → ...g_arduino_adafruit_lis3dh/app.config.test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# this file enables modules defined in Kconfig. Do not use this file for | ||
# application configuration. This is only needed during migration. | ||
CONFIG_PACKAGE_ARDUINO_LIS3DH=y | ||
CONFIG_PACKAGE_ARDUINO_ADAFRUIT_LIS3DH=y |
File renamed without changes.