diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-03 10:49:55 -0800 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-03 10:49:55 -0800 |
commit | 91c8d8e71c7780eb17f5f73bdde89eece42e7e98 (patch) | |
tree | 4f814850702894ca8a54fa2e7a7c6027ee3302b4 /stm/mpconfigport.h | |
parent | 9b87b39ab47f381521377d3a9456a0a1651f4cae (diff) | |
parent | b372bfca21ccab593359ef25a0a0c6bf697c8586 (diff) | |
download | micropython-91c8d8e71c7780eb17f5f73bdde89eece42e7e98.tar.gz micropython-91c8d8e71c7780eb17f5f73bdde89eece42e7e98.zip |
Merge pull request #41 from pfalcon/more-mem-stats
Collect more memory statistics
Diffstat (limited to 'stm/mpconfigport.h')
-rw-r--r-- | stm/mpconfigport.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/stm/mpconfigport.h b/stm/mpconfigport.h new file mode 100644 index 0000000000..4cea332f39 --- /dev/null +++ b/stm/mpconfigport.h @@ -0,0 +1,21 @@ +#include <stdint.h> + +// options to control how Micro Python is built + +#define MICROPY_ENABLE_FLOAT (1) +#define MICROPY_EMIT_CPYTHON (0) +#define MICROPY_EMIT_X64 (0) +#define MICROPY_EMIT_THUMB (1) +#define MICROPY_EMIT_INLINE_THUMB (1) + +// type definitions for the specific machine + +#define BYTES_PER_WORD (4) + +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 +typedef const void *machine_const_ptr_t; // must be of pointer size +typedef float machine_float_t; + +machine_float_t machine_sqrt(machine_float_t x); |