Skip to content

Commit

Permalink
fix API name in fw
Browse files Browse the repository at this point in the history
  • Loading branch information
NouranAbdelaziz committed Jul 8, 2024
1 parent 7e7ae4b commit 90f93dc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion EF_GPIO8.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ info:
license: APACHE 2.0
author: Mohamed Shalan
email: [email protected]
version: v1.0.7
version: v1.0.8
date: 08-07-2024
category: digital
tags:
Expand Down
2 changes: 1 addition & 1 deletion fw/EF_GPIO8.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <EF_GPIO8.h>

void EF_GPIO_setGclkEnable (uint32_t gpio_base, int value){
void EF_GPIO8_setGclkEnable (uint32_t gpio_base, int value){
EF_GPIO8_TYPE* gpio = (EF_GPIO8_TYPE*)gpio_base;
gpio->GCLK = value;
}
Expand Down
2 changes: 1 addition & 1 deletion fw/EF_GPIO8.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#define GPIO8_INPUT 0
#define GPIO8_OUTPUT 1

void EF_GPIO_setGclkEnable (uint32_t gpio_base, int value);
void EF_GPIO8_setGclkEnable (uint32_t gpio_base, int value);


//! reads the input value of the GPIOs
Expand Down

0 comments on commit 90f93dc

Please sign in to comment.