Skip to content

Commit

Permalink
arduino fade example works
Browse files Browse the repository at this point in the history
  • Loading branch information
pez2001 committed May 27, 2012
1 parent 4ba5756 commit c500328
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Makefile
Expand Up @@ -41,7 +41,7 @@ MAJOR_VERSION = 0
MINOR_VERSION = 77
#builds are counted since version 0.5 roughly
BUILD = 257
DEBUG_BUILD = 1133
DEBUG_BUILD = 1134

#CFLAGS= -Ilibraries/fmod -W -w -O2 -std=c99 -DBUILD=$(BUILD) -DMAJOR_VERSION=$(MAJOR_VERSION) -DMINOR_VERSION=$(MINOR_VERSION)
CFLAGS= -W -w -O2 -std=c99 -DBUILD=$(BUILD) -DMAJOR_VERSION=$(MAJOR_VERSION) -DMINOR_VERSION=$(MINOR_VERSION) -lm
Expand Down
2 changes: 1 addition & 1 deletion src/vm.c
Expand Up @@ -1203,7 +1203,7 @@ object *vm_RunRPYC(vm *vm,stream *f ,BOOL free_object)
object *global_key = (object*)CreateUnicodeObject(str_Copy("__main__"));
vm_AddGlobal(vm, global_key,obj);
//printf("co:%c\r\n",obj->type);
FullDumpObjectArduino(obj,0);
//FullDumpObjectArduino(obj,0);
object *ret = vm_RunObject(vm, obj, NULL,NULL);

if (ret != NULL)
Expand Down

0 comments on commit c500328

Please sign in to comment.