Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Arguments.h 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* mbed Microcontroller Library
  2. * Copyright (c) 2006-2013 ARM Limited
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef ARGUMENTS_H
  17. #define ARGUMENTS_H
  18. #include "platform.h"
  19. #include "parse_pins.h"
  20. namespace mbed {
  21. #define RPC_MAX_STRING 128
  22. #define RPC_MAX_ARGS 16
  23. class Arguments {
  24. public:
  25. Arguments(const char* rqs);
  26. template<typename Arg>
  27. Arg getArg(void);
  28. char *obj_name;
  29. char *method_name;
  30. int argc;
  31. char* argv[RPC_MAX_ARGS];
  32. private:
  33. // This copy can be removed if we can assume the request string is
  34. // persistent and writable for the duration of the call
  35. char request[RPC_MAX_STRING];
  36. int index;
  37. char* search_arg(char **arg, char *p, char next_sep);
  38. };
  39. class Reply {
  40. public:
  41. Reply(char* r);
  42. template<typename Data>
  43. void putData(Data d);
  44. private:
  45. void separator(void);
  46. bool first;
  47. char* reply;
  48. };
  49. } // Namespace mbed
  50. #endif