Blame view

build5/epsilon-master/python/port/builtins.c 917 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  #include "py/builtin.h"
  #include "py/obj.h"
  #include <string.h>
  #include "mphalport.h"
  
  mp_obj_t mp_builtin_open(size_t n_args, const mp_obj_t *args, mp_map_t *kwargs) {
      return mp_const_none;
  }
  MP_DEFINE_CONST_FUN_OBJ_KW(mp_builtin_open_obj, 1, mp_builtin_open);
  
  mp_obj_t mp_builtin_input(size_t n_args, const mp_obj_t *args) {
    // 1 - Retrieve the prompt if any
    const char * prompt = NULL;
    if (n_args == 1) {
      prompt = mp_obj_str_get_str(args[0]);
    }
  
    // 2 - Perform the HAL input command
    const char * result = mp_hal_input(prompt);
  
    // 3 - Log the prompt, result and flush a new line
    mp_obj_t resultStr = mp_obj_new_str(result, strlen(result));
    if (n_args == 1) {
      mp_obj_print(args[0], PRINT_STR);
    }
    mp_obj_print(resultStr, PRINT_STR);
    mp_print_str(MP_PYTHON_PRINTER, "\n");
  
    return resultStr;
  }
  MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(mp_builtin_input_obj, 0, 1, mp_builtin_input);