python-on-a-chip online compiler

Dependencies:   mbed TSI

/media/uploads/va009039/p14p-f446re.png

more info: python-on-a-chip

Committer:
va009039
Date:
Sat Jun 14 12:14:55 2014 +0000
Revision:
7:71a6f45bc563
Parent:
6:e428c1e68f0c
Child:
8:88d4fba4ccd5
add Nucleo F401RE

Who changed what in which revision?

UserRevisionLine numberNew contents of line
va009039 0:65f1469d6bfb 1 /*
va009039 0:65f1469d6bfb 2 # This file is Copyright 2009 Dean Hall.
va009039 0:65f1469d6bfb 3 #
va009039 0:65f1469d6bfb 4 # This file is part of the Python-on-a-Chip program.
va009039 0:65f1469d6bfb 5 # Python-on-a-Chip is free software: you can redistribute it and/or modify
va009039 0:65f1469d6bfb 6 # it under the terms of the GNU LESSER GENERAL PUBLIC LICENSE Version 2.1.
va009039 0:65f1469d6bfb 7 #
va009039 0:65f1469d6bfb 8 # Python-on-a-Chip is distributed in the hope that it will be useful,
va009039 0:65f1469d6bfb 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
va009039 0:65f1469d6bfb 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
va009039 0:65f1469d6bfb 11 # A copy of the GNU LESSER GENERAL PUBLIC LICENSE Version 2.1
va009039 0:65f1469d6bfb 12 # is seen in the file COPYING up one directory from this.
va009039 0:65f1469d6bfb 13 */
va009039 0:65f1469d6bfb 14
va009039 0:65f1469d6bfb 15
va009039 0:65f1469d6bfb 16 #include "pm.h"
va009039 0:65f1469d6bfb 17
va009039 0:65f1469d6bfb 18
va009039 0:65f1469d6bfb 19 #ifdef __cplusplus
va009039 0:65f1469d6bfb 20 extern
va009039 0:65f1469d6bfb 21 #endif
va009039 0:65f1469d6bfb 22
va009039 5:19bd98307341 23 #if defined(TARGET_LPC1768)
va009039 0:65f1469d6bfb 24 #define HEAP_SIZE 0x7000
va009039 5:19bd98307341 25 #elif defined(TARGET_LPC1549)
va009039 5:19bd98307341 26 #define HEAP_SIZE 0x8000
va009039 5:19bd98307341 27 #elif defined(TARGET_KL46Z)
va009039 5:19bd98307341 28 #define HEAP_SIZE 0x7000
va009039 5:19bd98307341 29 #elif defined(TARGET_KL25Z)
va009039 5:19bd98307341 30 #define HEAP_SIZE 0x3400
va009039 6:e428c1e68f0c 31 #elif defined(TARGET_LPC4088)
va009039 6:e428c1e68f0c 32 #define HEAP_SIZE 0xf000
va009039 7:71a6f45bc563 33 #elif defined(TARGET_NUCLEO_F401RE)
va009039 7:71a6f45bc563 34 #define HEAP_SIZE 0xf000
va009039 5:19bd98307341 35 #else
va009039 5:19bd98307341 36 #error "target error"
va009039 3:559c4bd38111 37 #endif
va009039 0:65f1469d6bfb 38
va009039 0:65f1469d6bfb 39 unsigned char const usrlib_img[];
va009039 0:65f1469d6bfb 40
va009039 5:19bd98307341 41 uint8_t heap[HEAP_SIZE];
va009039 0:65f1469d6bfb 42
va009039 0:65f1469d6bfb 43 int
va009039 0:65f1469d6bfb 44 main(void)
va009039 0:65f1469d6bfb 45 {
va009039 0:65f1469d6bfb 46 PmReturn_t retval;
va009039 0:65f1469d6bfb 47
va009039 0:65f1469d6bfb 48 retval = pm_init(heap, HEAP_SIZE, MEMSPACE_PROG, usrlib_img);
va009039 0:65f1469d6bfb 49 PM_RETURN_IF_ERROR(retval);
va009039 0:65f1469d6bfb 50
va009039 0:65f1469d6bfb 51 /* Run the sample program */
va009039 0:65f1469d6bfb 52 retval = pm_run((uint8_t *)"main");
va009039 0:65f1469d6bfb 53
va009039 0:65f1469d6bfb 54 return (int)retval;
va009039 0:65f1469d6bfb 55 }