Skip to content

Add libgpiod support #283

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

Merged
merged 4 commits into from
Nov 25, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Merge branch 'dev' into gpiod
  • Loading branch information
wb2osz authored Nov 22, 2023
commit a5d9fc31b58f242bf93754e7ac274df7cc4820d3
9 changes: 5 additions & 4 deletions src/direwolf.c
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ int main (int argc, char *argv[])
//dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION);


#if defined(ENABLE_GPSD) || defined(USE_HAMLIB) || defined(USE_CM108) || USE_AVAHI_CLIENT || USE_MACOS_DNSSD
#if defined(ENABLE_GPSD) || defined(USE_HAMLIB) || defined(USE_CM108) || USE_AVAHI_CLIENT || USE_MACOS_DNSSD || USE_GPIOD
dw_printf ("Includes optional support for: ");
#if defined(ENABLE_GPSD)
dw_printf (" gpsd");
Expand All @@ -316,10 +316,11 @@ int main (int argc, char *argv[])
#endif
#if defined(USE_CM108)
dw_printf (" cm108-ptt");
#endif
#if defined(USE_GPIOD)
#endif
#if defined(USE_GPIOD)
dw_printf (" libgpiod");
#if (USE_AVAHI_CLIENT|USE_MACOS_DNSSD)
#endif
#if (USE_AVAHI_CLIENT|USE_MACOS_DNSSD)
dw_printf (" dns-sd");
#endif
dw_printf ("\n");
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.