main.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <getopt.h>
  4. #include <sprog.h>
  5. #include <serial.h>
  6. #include <lpc.h>
  7. struct option sprog_options[] = {
  8. {"port", required_argument, NULL, 'p'},
  9. {"family", required_argument, NULL, 'f'},
  10. {"baud", required_argument, NULL, 'b'},
  11. {"version", no_argument, NULL, 'v'},
  12. {"help", no_argument, NULL, 'h'},
  13. {NULL, 0, NULL, 0}
  14. };
  15. void usage(const char *name);
  16. void print_version(void);
  17. int main(int argc, char *argv[]) {
  18. const struct sprog_family *fam;
  19. struct sprog_data d;
  20. int opt;
  21. int option_index;
  22. int baud;
  23. char port[128];
  24. char path[128];
  25. port[0] = 0;
  26. path[0] = 0;
  27. fam = NULL;
  28. while((opt = getopt_long(argc, argv, "p:b:f:h", sprog_options, &option_index))!=-1) {
  29. switch(opt) {
  30. case 'p':
  31. strncpy(port, optarg, sizeof(port));
  32. break;
  33. case 'e':
  34. strncpy(path, optarg, sizeof(path));
  35. break;
  36. case 'f':
  37. if(strcmp(optarg, "lpc")==0)
  38. fam = &lpc_family;
  39. else
  40. sprog_error("Family '%s' not recognized\n", optarg);
  41. break;
  42. case 'b':
  43. if(sscanf(optarg, "%d", &baud)!=1) {
  44. sprog_error("Invalid value for baud rate: '%s'\n", optarg);
  45. return 1;
  46. }
  47. break;
  48. case 'v':
  49. print_version();
  50. return 0;
  51. break;
  52. case 'h':
  53. usage(argv[0]);
  54. return 0;
  55. break;
  56. default:
  57. usage(argv[0]);
  58. return 1;
  59. }
  60. }
  61. if(!port[0]) {
  62. sprog_error("Serial port not specified!\n");
  63. usage(argv[0]);
  64. return 1;
  65. }
  66. if(!fam) {
  67. sprog_error("Family not specified!\n");
  68. usage(argv[0]);
  69. return 1;
  70. }
  71. if(path[0]) {
  72. d.data = NULL;
  73. d.size = 0;
  74. sprog_load(&d, path);
  75. sprog_communicate(fam, &d, port, baud);
  76. } else
  77. sprog_communicate(fam, NULL, port, baud);
  78. return 0;
  79. }
  80. void usage(const char *name) {
  81. printf("%s -p <port> -f <family> [options]\n", name);
  82. printf("Following options are supported:\n");
  83. printf(" -p <port>, --port <port> specify the serial port, eg. /dev/ttyS0\n");
  84. printf(" -f <family>, --family <family> specify the microcontroller family, eg. lpc\n");
  85. printf(" -b <baud>, --baud <baud> specify the baud rate\n");
  86. printf(" -e <file>, --exec <file> execute the given file\n");
  87. printf(" -h, --help display this help\n");
  88. printf(" --version print version and exit\n");
  89. }
  90. void print_version(void) {
  91. printf("SProg v%s (built on " __DATE__ ")\n", sprog_version);
  92. }