Norimasa Okamoto
/
pymite
python-on-a-chip online compiler
- http://pymbed.appspot.com/
- https://code.google.com/p/python-on-a-chip/
- http://www.youtube.com/watch?v=Oyqc2bFRW9I
- https://bitbucket.org/va009039/pymbed/
more info: python-on-a-chip
vm/pmEmptyPlatformDefs.h@15:94ca5c8003e5, 2016-04-14 (annotated)
- Committer:
- va009039
- Date:
- Thu Apr 14 22:32:57 2016 +0000
- Revision:
- 15:94ca5c8003e5
- Parent:
- 0:65f1469d6bfb
update Nucleo-F401RE.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
va009039 | 0:65f1469d6bfb | 1 | /* |
va009039 | 0:65f1469d6bfb | 2 | # This file is Copyright 2010 Dean Hall. |
va009039 | 0:65f1469d6bfb | 3 | # This file is part of the PyMite VM. |
va009039 | 0:65f1469d6bfb | 4 | # This file is licensed under the MIT License. |
va009039 | 0:65f1469d6bfb | 5 | # See the LICENSE file for details. |
va009039 | 0:65f1469d6bfb | 6 | */ |
va009039 | 0:65f1469d6bfb | 7 | |
va009039 | 0:65f1469d6bfb | 8 | |
va009039 | 0:65f1469d6bfb | 9 | #ifndef __PM_EMPTY_PLATFORM_DEFS_H__ |
va009039 | 0:65f1469d6bfb | 10 | #define __PM_EMPTY_PLATFORM_DEFS_H__ |
va009039 | 0:65f1469d6bfb | 11 | |
va009039 | 0:65f1469d6bfb | 12 | |
va009039 | 0:65f1469d6bfb | 13 | /** |
va009039 | 0:65f1469d6bfb | 14 | * \file |
va009039 | 0:65f1469d6bfb | 15 | * \brief Empty platform-specific definitions |
va009039 | 0:65f1469d6bfb | 16 | * |
va009039 | 0:65f1469d6bfb | 17 | * This file #defines as blank any undefined platform-specific |
va009039 | 0:65f1469d6bfb | 18 | * definitions. |
va009039 | 0:65f1469d6bfb | 19 | */ |
va009039 | 0:65f1469d6bfb | 20 | |
va009039 | 0:65f1469d6bfb | 21 | /** |
va009039 | 0:65f1469d6bfb | 22 | * Define a processor-specific specifier for use in declaring the heap. |
va009039 | 0:65f1469d6bfb | 23 | * If not defined, make it empty. |
va009039 | 0:65f1469d6bfb | 24 | * See <code>pmHeap</code> in heap.c for its use, which is:<br> |
va009039 | 0:65f1469d6bfb | 25 | * <code>static PmHeap_t pmHeap PM_PLAT_HEAP_ATTR;</code> |
va009039 | 0:65f1469d6bfb | 26 | */ |
va009039 | 0:65f1469d6bfb | 27 | #if !defined(PM_PLAT_HEAP_ATTR) || defined(__DOXYGEN__) |
va009039 | 0:65f1469d6bfb | 28 | #define PM_PLAT_HEAP_ATTR |
va009039 | 0:65f1469d6bfb | 29 | #endif |
va009039 | 0:65f1469d6bfb | 30 | |
va009039 | 0:65f1469d6bfb | 31 | #endif /* __PM_EMPTY_PLATFORM_DEFS_H__ */ |