Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gpioCfgSetInternals now returns PI_INITIALISED after gpioInitialise #456

Merged
merged 2 commits into from
Apr 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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