Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
40274fec
Commit
40274fec
authored
Nov 09, 2015
by
Damien George
Browse files
lib/pyexec: Move header pyexec.h from stmhal directory.
parent
50f56227
Changes
13
Hide whitespace changes
Inline
Side-by-side
cc3200/mods/modmachine.c
View file @
40274fec
...
...
@@ -39,7 +39,6 @@
#include
"inc/hw_uart.h"
#include
"rom_map.h"
#include
"prcm.h"
#include
"pyexec.h"
#include
"pybuart.h"
#include
"pybpin.h"
#include
"pybrtc.h"
...
...
cc3200/mptask.c
View file @
40274fec
...
...
@@ -43,7 +43,7 @@
#include
"pybuart.h"
#include
"pybpin.h"
#include
"pybrtc.h"
#include
"pyexec.h"
#include
"
lib/utils/
pyexec.h"
#include
"gccollect.h"
#include
"gchelper.h"
#include
"readline.h"
...
...
esp8266/main.c
View file @
40274fec
...
...
@@ -35,7 +35,7 @@
#include
"py/frozenmod.h"
#include
"py/mphal.h"
#include
"py/gc.h"
#include
"pyexec.h"
#include
"
lib/utils/
pyexec.h"
#include
"gccollect.h"
#include
"user_interface.h"
...
...
esp8266/modpyb.c
View file @
40274fec
...
...
@@ -31,7 +31,6 @@
#include
"py/gc.h"
#include
"py/mphal.h"
#include
"gccollect.h"
#include
"pyexec.h"
#include
"user_interface.h"
#include
"modpyb.h"
...
...
esp8266/uart.c
View file @
40274fec
...
...
@@ -207,7 +207,7 @@ void ICACHE_FLASH_ATTR uart_reattach() {
// Task-based UART interface
#include
"py/obj.h"
#include
"
stmhal
/pyexec.h"
#include
"
lib/utils
/pyexec.h"
void
soft_reset
(
void
);
...
...
lib/utils/pyexec.c
View file @
40274fec
...
...
@@ -39,7 +39,7 @@
#include
"usb.h"
#endif
#include
"readline.h"
#include
"pyexec.h"
#include
"
lib/utils/
pyexec.h"
#include
"genhdr/mpversion.h"
pyexec_mode_kind_t
pyexec_mode_kind
=
PYEXEC_MODE_FRIENDLY_REPL
;
...
...
stmhal
/pyexec.h
→
lib/utils
/pyexec.h
View file @
40274fec
...
...
@@ -23,6 +23,8 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#ifndef __MICROPY_INCLUDED_LIB_UTILS_PYEXEC_H__
#define __MICROPY_INCLUDED_LIB_UTILS_PYEXEC_H__
typedef
enum
{
PYEXEC_MODE_RAW_REPL
,
...
...
@@ -41,3 +43,5 @@ void pyexec_event_repl_init(void);
int
pyexec_event_repl_process_char
(
int
c
);
MP_DECLARE_CONST_FUN_OBJ
(
pyb_set_repl_info_obj
);
#endif // __MICROPY_INCLUDED_LIB_UTILS_PYEXEC_H__
minimal/main.c
View file @
40274fec
...
...
@@ -7,7 +7,7 @@
#include
"py/runtime.h"
#include
"py/repl.h"
#include
"py/gc.h"
#include
"pyexec.h"
#include
"
lib/utils/
pyexec.h"
void
do_str
(
const
char
*
src
,
mp_parse_input_kind_t
input_kind
)
{
mp_lexer_t
*
lex
=
mp_lexer_new_from_str_len
(
MP_QSTR__lt_stdin_gt_
,
src
,
strlen
(
src
),
0
);
...
...
pic16bit/main.c
View file @
40274fec
...
...
@@ -33,7 +33,7 @@
#include
"py/runtime.h"
#include
"py/gc.h"
#include
"py/mphal.h"
#include
"pyexec.h"
#include
"
lib/utils/
pyexec.h"
#include
"readline.h"
#include
"board.h"
#include
"modpyb.h"
...
...
stmhal/main.c
View file @
40274fec
...
...
@@ -36,13 +36,13 @@
#include
"py/gc.h"
#include
"py/mphal.h"
#include
"lib/utils/pyexec.h"
#include
"lib/fatfs/ff.h"
#include
"systick.h"
#include
"pendsv.h"
#include
"gccollect.h"
#include
"readline.h"
#include
"pyexec.h"
#include
"i2c.h"
#include
"spi.h"
#include
"uart.h"
...
...
stmhal/modpyb.c
View file @
40274fec
...
...
@@ -33,12 +33,12 @@
#include
"py/nlr.h"
#include
"py/obj.h"
#include
"py/gc.h"
#include
"lib/utils/pyexec.h"
#include
"lib/fatfs/ff.h"
#include
"lib/fatfs/diskio.h"
#include
"gccollect.h"
#include
"irq.h"
#include
"systick.h"
#include
"pyexec.h"
#include
"led.h"
#include
"pin.h"
#include
"timer.h"
...
...
teensy/main.c
View file @
40274fec
...
...
@@ -11,7 +11,7 @@
#include
"py/gc.h"
#include
"py/mphal.h"
#include
"gccollect.h"
#include
"pyexec.h"
#include
"
lib/utils/
pyexec.h"
#include
"readline.h"
#include
"lexermemzip.h"
...
...
teensy/modpyb.c
View file @
40274fec
...
...
@@ -33,10 +33,11 @@
#include
"py/gc.h"
#include
"py/mphal.h"
#include
"lib/utils/pyexec.h"
#include
"gccollect.h"
#include
"irq.h"
#include
"systick.h"
#include
"pyexec.h"
#include
"led.h"
#include
"pin.h"
#include
"timer.h"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment