Skip to content

Commit

Permalink
Merge pull request #456 from berndporr/develop
Browse files Browse the repository at this point in the history
gpioCfgSetInternals now returns PI_INITIALISED after gpioInitialise
  • Loading branch information
guymcswain authored Apr 15, 2021
2 parents b7cdace + de6064c commit dcb2fbe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions pigpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -14023,6 +14023,7 @@ uint32_t gpioCfgGetInternals(void)

int gpioCfgSetInternals(uint32_t cfgVal)
{
if (libInitialised) return PI_INITIALISED;
gpioCfg.internals = cfgVal;
gpioCfg.dbgLevel = cfgVal & 0xF;
gpioCfg.alertFreq = (cfgVal>>4) & 0xF;
Expand Down
4 changes: 2 additions & 2 deletions pigpiod_if2.h
Original file line number Diff line number Diff line change
Expand Up @@ -592,8 +592,8 @@ user_gpio: 0-31.
range: 25-40000.
. .
Returns 0 if OK, otherwise PI_BAD_USER_GPIO, PI_BAD_DUTYRANGE,
or PI_NOT_PERMITTED.
Returns the actual range for the current gpio frequency if OK,
otherwise PI_BAD_USER_GPIO, PI_BAD_DUTYRANGE, or PI_NOT_PERMITTED.
Notes
Expand Down

0 comments on commit dcb2fbe

Please sign in to comment.