PD Buddy Sink Firmware
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * PD Buddy Sink Firmware - Smart power jack for USB Power Delivery
  3. * Copyright (C) 2017-2018 Clayton G. Hobbs <clay@lakeserv.net>
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. /*
  19. ChibiOS - Copyright (C) 2006..2015 Giovanni Di Sirio
  20. Licensed under the Apache License, Version 2.0 (the "License");
  21. you may not use this file except in compliance with the License.
  22. You may obtain a copy of the License at
  23. http://www.apache.org/licenses/LICENSE-2.0
  24. Unless required by applicable law or agreed to in writing, software
  25. distributed under the License is distributed on an "AS IS" BASIS,
  26. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  27. See the License for the specific language governing permissions and
  28. limitations under the License.
  29. */
  30. #ifndef PDBS_SHELL_H
  31. #define PDBS_SHELL_H
  32. #include <ch.h>
  33. #include <pdb.h>
  34. #define PDBS_SHELL_MAX_LINE_LENGTH 64
  35. #define PDBS_SHELL_MAX_ARGUMENTS 2
  36. /* Structure for PD Buddy shell commands */
  37. struct pdbs_shell_cmd {
  38. char *cmd;
  39. void (*func)(BaseSequentialStream *chp, int argc, char *argv[]);
  40. char *desc;
  41. };
  42. /* Structure for PD Buddy shell configuration */
  43. struct pdbs_shell_cfg {
  44. BaseSequentialStream *io;
  45. const struct pdbs_shell_cmd *commands;
  46. };
  47. void pdbs_shell(struct pdb_config *cfg);
  48. bool shellGetLine(BaseSequentialStream *chp, char *line, unsigned size);
  49. #endif /* PDBS_SHELL_H */