Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - renatose

Pages: 1 2 [3] 4 5 ... 15
31
News / Re: Secret Nspire OS popups!
« on: June 25, 2012, 10:40:31 am »
wow this is absolutely great and awesome! keep up this great work Levak!
(and don't forget to make backups or to use git or something like that)

32
News / Re: Luna 0.3 for OS 3.2 is here!
« on: June 25, 2012, 07:05:33 am »
You have to add -lcrypto in the LDFLAGS line in the Makefile.

GCC is apparently awesome enough to tell which library is missing, it was like, hey this function is undefined but you'll find it in this lib, so add it in LDFLAGS and it'll work :P
adding -lcrypto doesn't make me any diference since the output is pretty much the same and also the same as adriweb's...

Spoiler For Console Output for $ make dist:
renato@renato-laptop-ubuntu:~/luna-v0.3/src$ make dist
rm -rf *.o luna dist
gcc -W -Wall   -c -o luna.o luna.c
gcc -W -Wall   -c -o zip.o minizip-1.1/zip.c
In file included from minizip-1.1/zip.c:196:0:
minizip-1.1/crypt.h: In function ‘decrypt_byte’:
minizip-1.1/crypt.h:35:68: warning: unused parameter ‘pcrc_32_tab’ [-Wunused-parameter]
gcc -W -Wall   -c -o ioapi.o minizip-1.1/ioapi.c
minizip-1.1/ioapi.c: In function ‘fopen_file_func’:
minizip-1.1/ioapi.c:83:49: warning: unused parameter ‘opaque’ [-Wunused-parameter]
minizip-1.1/ioapi.c: In function ‘fopen64_file_func’:
minizip-1.1/ioapi.c:101:51: warning: unused parameter ‘opaque’ [-Wunused-parameter]
minizip-1.1/ioapi.c: In function ‘fread_file_func’:
minizip-1.1/ioapi.c:120:48: warning: unused parameter ‘opaque’ [-Wunused-parameter]
minizip-1.1/ioapi.c: In function ‘fwrite_file_func’:
minizip-1.1/ioapi.c:127:49: warning: unused parameter ‘opaque’ [-Wunused-parameter]
minizip-1.1/ioapi.c: In function ‘ftell_file_func’:
minizip-1.1/ioapi.c:134:47: warning: unused parameter ‘opaque’ [-Wunused-parameter]
minizip-1.1/ioapi.c: In function ‘ftell64_file_func’:
minizip-1.1/ioapi.c:142:53: warning: unused parameter ‘opaque’ [-Wunused-parameter]
minizip-1.1/ioapi.c: In function ‘fseek_file_func’:
minizip-1.1/ioapi.c:149:48: warning: unused parameter ‘opaque’ [-Wunused-parameter]
minizip-1.1/ioapi.c: In function ‘fseek64_file_func’:
minizip-1.1/ioapi.c:172:50: warning: unused parameter ‘opaque’ [-Wunused-parameter]
minizip-1.1/ioapi.c: In function ‘fclose_file_func’:
minizip-1.1/ioapi.c:198:47: warning: unused parameter ‘opaque’ [-Wunused-parameter]
minizip-1.1/ioapi.c: In function ‘ferror_file_func’:
minizip-1.1/ioapi.c:205:47: warning: unused parameter ‘opaque’ [-Wunused-parameter]
gcc -o luna luna.o zip.o ioapi.o -lssl -lz -lcrypt
luna.o: In function `doccrypt':
luna.c:(.text+0xa8c): undefined reference to `DES_set_key_checked'
luna.c:(.text+0xaab): undefined reference to `DES_set_key_checked'
luna.c:(.text+0xaca): undefined reference to `DES_set_key_checked'
luna.c:(.text+0xb77): undefined reference to `DES_ecb3_encrypt'
collect2: ld returned 1 exit status
make: *** [luna] Error 1
but this gives a smaller output...
Spoiler For Console Output for $ make all:
renato@renato-laptop-ubuntu:~/luna-v0.3/src$ make all
gcc -o luna luna.o zip.o ioapi.o -lssl -lz -lcrypt
luna.o: In function `doccrypt':
luna.c:(.text+0xa8c): undefined reference to `DES_set_key_checked'
luna.c:(.text+0xaab): undefined reference to `DES_set_key_checked'
luna.c:(.text+0xaca): undefined reference to `DES_set_key_checked'
luna.c:(.text+0xb77): undefined reference to `DES_ecb3_encrypt'
collect2: ld returned 1 exit status
make: *** [luna] Error 1
I written lcrypt instead of lcrypto.
Compiled with $ make all and it's working.

33
General Calculator Help / Re: Install OS 3.1
« on: June 24, 2012, 09:36:50 pm »
Actually, only the student or teacher software (not the computer link) can install Ndless.
you're wrong at it, I've always used computer link.
On the CX?
nope

34
News / Re: Luna 0.3 for OS 3.2 is here!
« on: June 24, 2012, 09:36:15 pm »
If anyone is successful compiling this in linux please report in.

35
General Calculator Help / Re: Install OS 3.1
« on: June 24, 2012, 09:34:43 pm »
Actually, only the student or teacher software (not the computer link) can install Ndless.
you're wrong at it, I've always used computer link.

36
I have released Luna v0.3 with OS v3.2 compatibility and full support of special characters: http://ndlessly.wordpress.com/2012/06/24/luna-updated-compatibility-with-os-v3-2-and-special-characters/
yay! thank you ExtendeD!
I was expecting the special characters for so long, but now its here thanks to you.

EDIT: I couldn't build it on ubuntu, what did I do badly?

Spoiler For Console Output:
renato@renato-laptop-ubuntu:~/luna-v0.3/src$ make dist
rm -rf *.o luna dist
gcc -W -Wall   -c -o luna.o luna.c
gcc -W -Wall   -c -o zip.o minizip-1.1/zip.c
In file included from minizip-1.1/zip.c:196:0:
minizip-1.1/crypt.h: In function ‘decrypt_byte’:
minizip-1.1/crypt.h:35:68: warning: unused parameter ‘pcrc_32_tab’ [-Wunused-parameter]
gcc -W -Wall   -c -o ioapi.o minizip-1.1/ioapi.c
minizip-1.1/ioapi.c: In function ‘fopen_file_func’:
minizip-1.1/ioapi.c:83:49: warning: unused parameter ‘opaque’ [-Wunused-parameter]
minizip-1.1/ioapi.c: In function ‘fopen64_file_func’:
minizip-1.1/ioapi.c:101:51: warning: unused parameter ‘opaque’ [-Wunused-parameter]
minizip-1.1/ioapi.c: In function ‘fread_file_func’:
minizip-1.1/ioapi.c:120:48: warning: unused parameter ‘opaque’ [-Wunused-parameter]
minizip-1.1/ioapi.c: In function ‘fwrite_file_func’:
minizip-1.1/ioapi.c:127:49: warning: unused parameter ‘opaque’ [-Wunused-parameter]
minizip-1.1/ioapi.c: In function ‘ftell_file_func’:
minizip-1.1/ioapi.c:134:47: warning: unused parameter ‘opaque’ [-Wunused-parameter]
minizip-1.1/ioapi.c: In function ‘ftell64_file_func’:
minizip-1.1/ioapi.c:142:53: warning: unused parameter ‘opaque’ [-Wunused-parameter]
minizip-1.1/ioapi.c: In function ‘fseek_file_func’:
minizip-1.1/ioapi.c:149:48: warning: unused parameter ‘opaque’ [-Wunused-parameter]
minizip-1.1/ioapi.c: In function ‘fseek64_file_func’:
minizip-1.1/ioapi.c:172:50: warning: unused parameter ‘opaque’ [-Wunused-parameter]
minizip-1.1/ioapi.c: In function ‘fclose_file_func’:
minizip-1.1/ioapi.c:198:47: warning: unused parameter ‘opaque’ [-Wunused-parameter]
minizip-1.1/ioapi.c: In function ‘ferror_file_func’:
minizip-1.1/ioapi.c:205:47: warning: unused parameter ‘opaque’ [-Wunused-parameter]
gcc -o luna luna.o zip.o ioapi.o -lssl -lz
luna.o: In function `doccrypt':
luna.c:(.text+0xa8c): undefined reference to `DES_set_key_checked'
luna.c:(.text+0xaab): undefined reference to `DES_set_key_checked'
luna.c:(.text+0xaca): undefined reference to `DES_set_key_checked'
luna.c:(.text+0xb77): undefined reference to `DES_ecb3_encrypt'
collect2: ld returned 1 exit status
make: *** [luna] Error 1

37
News / Re: Lua print restored in OS 3.1
« on: June 24, 2012, 06:22:27 am »
My problem was only with the wiring...

38
TI-Nspire / Re: nspire serial console
« on: June 23, 2012, 09:53:57 pm »
What about making a function for lua to recieve data? Is it possible to create new events (for Lua) related to the interrupts?

Something like on.serial_in(data_in)

39
News / Re: Lua print restored in OS 3.1
« on: June 22, 2012, 06:34:23 pm »
Maybe there's a problem with your RS232 adapter. If you can see something in nspire_emu's console, you can be sure its an hardware issue.
isn't it supposed to show some text on the screen?
Code: [Select]
print("hello world")
print(1, 2, 3)
print(FOOBAR)

40
TI-Nspire / Re: nspire serial console
« on: June 22, 2012, 06:33:02 pm »
It's C++ and there are lot's of examples and very good documentation and libraries and so on - that's a really big world.
Is/will be the ndless SDK working on linux?
The arduino IDE is written in java and it's crossplatform. It's basic but does the job easily.
So since I got the arduino till I had a flashing LED took me 10mins in ubuntu.

41
News / Re: Lua print restored in OS 3.1
« on: June 22, 2012, 06:25:40 pm »
fixprint doesn't give me any output doing nothing and runprint opens a document with a Lua script which doesn't print anything to the screen neither to the RS232 port...

42
TI-Nspire / nspire serial console
« on: June 22, 2012, 05:05:26 pm »
Hey!
As I don't have any experience programming on C to the nspire neither I have established the dev-setup to do so I am here to ask for someone to do a simple program (I think ???)...

A serial console capable of sending/receiving text through RS232.
It should be listening constantly for any input and have the capability to send messages also by writing the text to send on the bottom.
If UTF-8 complicates a lot more ASCII text is enough.
Esc/On to close the program.
On each start load the last session, so a cache file should be needed, but this is not mandatory.
Only the amount of text that can fit in the screen is enough: this spares a scrolling option, a big cache file and keeps it very lightweight.

It is to use with an arduino but I'll take care of that part.
I won't give anything but a big thank you to the one who makes this and the promise to show some great developments using these two great tools/toys/educational devices which are the nspire and the arduino!  ;D

If anyone wants a mockup to have a better idea of what I want, just ask for it  ;)

EDIT: I don't know if that matters but my nspire is a CAS touchpad...

43
News / Re: Release of FormulaPro for the Nspire
« on: June 21, 2012, 05:54:32 pm »
This is great! I was looking forward to this and its finaly here!

Are you intending to join the main capabilities of EEPro and MEPro as an EProN (Engineering Professional Nspire Software, do you like this name? xD) in the main trunk of EEPro for Nspire?

44
Miscellaneous / Re: strange laptop screen
« on: June 18, 2012, 05:14:01 pm »
well... recently something similar happened to me: it got much worse and then it gained a single word to describe it: trash.

45
TI-Nspire / Re: Nspire audio?
« on: June 15, 2012, 09:38:24 am »
Wasn't there a fixprint program by ndless for OS 3.1?
Sure : http://tiplanet.org/forum/archives_voir.php?id=4227
But it's useless to have that+Ndless+3.1 when you can have it in 3.0.1 or 3.0.2 and when you can't use the 3.2 SDK.
anyway I'll use that fix in OS 3.1 if that doens't work I'll go back to 3.0.2.

Pages: 1 2 [3] 4 5 ... 15