led.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * This program is free software; you can redistribute it and/or modify
  3. * it under the terms of the GNU General Public License as published by
  4. * the Free Software Foundation; either version 2 of the License, or
  5. * (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program; if not, write to the Free Software
  14. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  15. *
  16. * Provided by fon.com
  17. * Copyright (C) 2009 John Crispin <blogic@openwrt.org>
  18. */
  19. #include <stdio.h>
  20. #include <string.h>
  21. #include <syslog.h>
  22. #include <unistd.h>
  23. #include "include/ucix.h"
  24. #include "include/log.h"
  25. #include "include/timer.h"
  26. #include "include/led.h"
  27. static char usbled[16];
  28. void led_ping(void)
  29. {
  30. FILE *fp;
  31. static int last = 0;
  32. static struct uci_context *ctx;
  33. int mounted, count;
  34. int led = 1;
  35. char path[256];
  36. ctx = ucix_init("mountd");
  37. mounted = ucix_get_option_int(ctx, "mountd", "mountd", "mounted", 0);
  38. count = ucix_get_option_int(ctx, "mountd", "mountd", "count", 0);
  39. ucix_cleanup(ctx);
  40. if(!count)
  41. led = 0;
  42. if(count && !mounted)
  43. led = 1;
  44. if(count && mounted)
  45. last = led = (last + 1) % 2;
  46. snprintf(path, 256, "/sys/class/leds/%s/brightness", usbled);
  47. fp = fopen(path, "w");
  48. if(fp)
  49. {
  50. fprintf(fp, "%d", led);
  51. fclose(fp);
  52. }
  53. }
  54. void led_init(char *led)
  55. {
  56. if(led)
  57. {
  58. strncpy(usbled, led, 16);
  59. timer_add(led_ping, 1);
  60. }
  61. }