Skip to content
Snippets Groups Projects
Commit 0ce94291 authored by Hauke Petersen's avatar Hauke Petersen Committed by Thomas Eichinger
Browse files

drivers/gpio: renamed GPIO(x,y) macro to GPIO_PIN

parent c0782d68
No related branches found
No related tags found
No related merge requests found
......@@ -30,8 +30,8 @@ extern "C" {
/**
* @brief Default GPIO macro maps port-pin tuples to the pin value
*/
#ifndef GPIO
#define GPIO(x,y) ((x & 0) | y)
#ifndef GPIO_PIN
#define GPIO_PIN(x,y) ((x & 0) | y)
#endif
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment