2014-01-03 10:15:53 -05:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2013-10-12 19:42:20 -04:00
|
|
|
// options to control how Micro Python is built
|
|
|
|
|
|
|
|
#define MICROPY_EMIT_THUMB (1)
|
|
|
|
#define MICROPY_EMIT_INLINE_THUMB (1)
|
2014-01-07 10:20:33 -05:00
|
|
|
#define MICROPY_ENABLE_GC (1)
|
2014-01-07 09:54:15 -05:00
|
|
|
#define MICROPY_ENABLE_REPL_HELPERS (1)
|
|
|
|
#define MICROPY_ENABLE_FLOAT (1)
|
2014-02-22 14:25:23 -05:00
|
|
|
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ)
|
2014-02-06 16:11:19 -05:00
|
|
|
#define MICROPY_PATH_MAX (128)
|
2014-02-22 15:09:00 -05:00
|
|
|
/* Enable FatFS LFNs
|
|
|
|
0: Disable LFN feature.
|
|
|
|
1: Enable LFN with static working buffer on the BSS. Always NOT reentrant.
|
|
|
|
2: Enable LFN with dynamic working buffer on the STACK.
|
|
|
|
3: Enable LFN with dynamic working buffer on the HEAP.
|
|
|
|
*/
|
|
|
|
#define MICROPY_ENABLE_LFN (0)
|
|
|
|
#define MICROPY_LFN_CODE_PAGE (1) /* 1=SFN/ANSI 437=LFN/U.S.(OEM) */
|
2013-10-12 19:42:20 -04:00
|
|
|
|
|
|
|
// type definitions for the specific machine
|
|
|
|
|
2013-10-21 18:46:04 -04:00
|
|
|
#define BYTES_PER_WORD (4)
|
|
|
|
|
2014-02-11 16:58:08 -05:00
|
|
|
#define UINT_FMT "%lu"
|
|
|
|
#define INT_FMT "%ld"
|
|
|
|
|
2013-10-12 19:42:20 -04:00
|
|
|
typedef int32_t machine_int_t; // must be pointer size
|
|
|
|
typedef uint32_t machine_uint_t; // must be pointer size
|
|
|
|
typedef void *machine_ptr_t; // must be of pointer size
|
2013-12-21 13:17:45 -05:00
|
|
|
typedef const void *machine_const_ptr_t; // must be of pointer size
|
2013-10-12 19:42:20 -04:00
|
|
|
typedef float machine_float_t;
|
2013-11-09 15:15:48 -05:00
|
|
|
|
|
|
|
machine_float_t machine_sqrt(machine_float_t x);
|
2014-01-21 17:20:50 -05:00
|
|
|
|
2014-02-11 10:21:03 -05:00
|
|
|
// There is no classical C heap in bare-metal ports, only Python
|
|
|
|
// garbage-collected heap. For completeness, emulate C heap via
|
|
|
|
// GC heap. Note that MicroPython core never uses malloc() and friends,
|
|
|
|
// so these defines are mostly to help extension module writers.
|
|
|
|
#define malloc gc_alloc
|
|
|
|
#define free gc_free
|
|
|
|
#define realloc gc_realloc
|
|
|
|
|
2014-01-21 17:20:50 -05:00
|
|
|
// board specific definitions
|
|
|
|
|
2014-02-17 20:57:13 -05:00
|
|
|
#include "mpconfigboard.h"
|
2014-01-21 21:06:28 -05:00
|
|
|
|
2014-01-21 17:32:51 -05:00
|
|
|
#define STM32F40_41xxx
|
|
|
|
#define USE_STDPERIPH_DRIVER
|
2014-02-04 00:11:48 -05:00
|
|
|
#if !defined(HSE_VALUE)
|
2014-01-21 17:32:51 -05:00
|
|
|
#define HSE_VALUE (8000000)
|
2014-02-04 00:11:48 -05:00
|
|
|
#endif
|
2014-01-26 12:41:01 -05:00
|
|
|
#define USE_DEVICE_MODE
|
|
|
|
//#define USE_HOST_MODE
|