pin_named_pins.c 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * This file is part of the MicroPython project, http://micropython.org/
  3. *
  4. * The MIT License (MIT)
  5. *
  6. * Copyright (c) 2013, 2014 Damien P. George
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in
  16. * all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. #include <stdio.h>
  27. #include <string.h>
  28. #include "py/runtime.h"
  29. #include "py/mphal.h"
  30. #include "pin.h"
  31. STATIC void pin_named_pins_obj_print(const mp_print_t *print, mp_obj_t self_in, mp_print_kind_t kind) {
  32. pin_named_pins_obj_t *self = self_in;
  33. mp_printf(print, "<Pin.%q>", self->name);
  34. }
  35. const mp_obj_type_t pin_cpu_pins_obj_type = {
  36. { &mp_type_type },
  37. .name = MP_QSTR_cpu,
  38. .print = pin_named_pins_obj_print,
  39. .locals_dict = (mp_obj_t)&pin_cpu_pins_locals_dict,
  40. };
  41. const mp_obj_type_t pin_board_pins_obj_type = {
  42. { &mp_type_type },
  43. .name = MP_QSTR_board,
  44. .print = pin_named_pins_obj_print,
  45. .locals_dict = (mp_obj_t)&pin_board_pins_locals_dict,
  46. };
  47. const pin_obj_t *pin_find_named_pin(const mp_obj_dict_t *named_pins, mp_obj_t name) {
  48. mp_map_t *named_map = mp_obj_dict_get_map((mp_obj_t)named_pins);
  49. mp_map_elem_t *named_elem = mp_map_lookup(named_map, name, MP_MAP_LOOKUP);
  50. if (named_elem != NULL && named_elem->value != NULL) {
  51. return named_elem->value;
  52. }
  53. return NULL;
  54. }
  55. const pin_af_obj_t *pin_find_af(const pin_obj_t *pin, uint8_t fn, uint8_t unit) {
  56. const pin_af_obj_t *af = pin->af;
  57. for (mp_uint_t i = 0; i < pin->num_af; i++, af++) {
  58. if (af->fn == fn && af->unit == unit) {
  59. return af;
  60. }
  61. }
  62. return NULL;
  63. }
  64. const pin_af_obj_t *pin_find_af_by_index(const pin_obj_t *pin, mp_uint_t af_idx) {
  65. const pin_af_obj_t *af = pin->af;
  66. for (mp_uint_t i = 0; i < pin->num_af; i++, af++) {
  67. if (af->idx == af_idx) {
  68. return af;
  69. }
  70. }
  71. return NULL;
  72. }
  73. /* unused
  74. const pin_af_obj_t *pin_find_af_by_name(const pin_obj_t *pin, const char *name) {
  75. const pin_af_obj_t *af = pin->af;
  76. for (mp_uint_t i = 0; i < pin->num_af; i++, af++) {
  77. if (strcmp(name, qstr_str(af->name)) == 0) {
  78. return af;
  79. }
  80. }
  81. return NULL;
  82. }
  83. */