-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c5780a5
commit 39f87dd
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
emBODY/eBcode/arch-arm/libs/highlevel/abslayer/hal2/api/hal2.h
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,25 @@ | ||
|
||
/* | ||
* Copyright (C) 2023 iCub Tech - Istituto Italiano di Tecnologia | ||
* Author: Marco Accame | ||
* email: [email protected] | ||
*/ | ||
|
||
// - include guard ---------------------------------------------------------------------------------------------------- | ||
|
||
#ifndef __HAL2_H_ | ||
#define __HAL2_H_ | ||
|
||
// it just wraps the usual hal interface | ||
|
||
#include "hal.h" | ||
#include "hal_motor.h" | ||
#include "hal_adc.h" | ||
|
||
#endif // include-guard | ||
|
||
|
||
// - end-of-file (leave a blank line after)---------------------------------------------------------------------------- | ||
|
||
|
||
|