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 - ExtendeD

Pages: 1 ... 18 19 [20] 21 22 ... 55
286
jimbauwens: I actually have an online version for a previous version of Luna, I could easily update it.
But I'm not sure it's really convenient as part of frequent code/build/test cycle.

287
Here is the translation: Alex asks for a version of Luna v0.2b compiled for Mac OS PPC.

288
Lua / Re: Getting started with Lua on Nspire
« on: December 31, 2011, 04:04:45 am »
The whole OpenSSL library is included in the OS so porting Luna would probably be easier. And the OS validation of the PK-ZIP format is actually quite weak so minizip isn't really needed.

289
Calculator C / Re: Hide documents on TI-Nspire [Ndless]
« on: December 27, 2011, 04:40:29 am »
But any program with direct access to the timer ports needs to be adapted. Existing programs will need source code analysis and testing. Adding an lcd_ingray() at the beginning of the program is not much.

290
Ndless / Re: ELF Loader for Ndless
« on: December 27, 2011, 04:02:35 am »
tangrs, I see on your blog that you actually have a C++ build chain that works more or less. Do C++ programs now runs with your ELF loader?
What are the "required functions" not implemented by Ndless that exception handling needs?

291
Calculator C / Re: Hide documents on TI-Nspire [Ndless]
« on: December 27, 2011, 03:33:48 am »
IMO, Ndless shouldn't switch to grayscale mode at all. Old pre-CX programs won't work on the CX without a rebuild anyway, so there's no backward compatibility reason to do so. I expect most CX programmers will want to use color when available.

You're right after all, I don't know why I am sticking with this idea.

292
Calculator C / Re: Hide documents on TI-Nspire [Ndless]
« on: December 26, 2011, 10:14:21 am »
The screen will be cleared on program startup on CX in the next update to avoid this (the documents screen cannot be displayed in grayscale).

293
Calculator C / Re: Hide documents on TI-Nspire [Ndless]
« on: December 26, 2011, 03:05:48 am »
Ok, sorry for double posting, but it seems that it doesn't work as expected on ndless 2.

So I removed show_dialog_box() from the code to make a non-gui version for ndless 2
http://levak.free.fr/ftp/nspire/HideManager/src/hide_nogui.tns

Compatibility of show_dialog_box() has been broken by TI with OS 3.x. Make sure to build Ndless 2 programs with the Ndless 2 SDK.

each time the program enter in a loop, glitches apear on the screen ...

Can you please post the guilty code?

294
Good idea hoffa :)

295
General Calculator Help / Re: Ndless 3.0 for Nspire
« on: December 23, 2011, 09:39:14 am »
Incidentally I'm not syncing the release with this one intentionally :)

296
Ndless / Re: ELF Loader for Ndless
« on: December 19, 2011, 04:18:41 pm »
On a somewhat related note, is the Newlib issue on the wiki still relevant? I see that we are including newlib in the API building...

Yes It's still relevant.

297
Other Calculators / Re: Next Nspire OS and Lua compatibility
« on: December 18, 2011, 04:24:47 pm »
Well there's an official Lua scripting page with public tools and documentation, so yes we are aware of it :)

298
Ndless / Re: ELF Loader for Ndless
« on: December 18, 2011, 10:23:31 am »
I see. But you can probably keep your ELF loader in user space until you reach a stable C++ toolchain, I then may integrate both if you want.

299
Ndless / Re: ELF Loader for Ndless
« on: December 18, 2011, 05:44:45 am »
Interesting tangrs.

But integrating to Ndless an ELF loader seems to be a bit overkilled just to support static initializers.
It's true that this would be annoying for initialization of arrays, but there's a simple workaround for this with nl_relocdata().

300
Lua / Re: Lua 'XML' reader
« on: December 18, 2011, 05:36:31 am »
Nick, you coud also directly use Lua structures instead of specific markup, this maybe more simple to parse:
Code: [Select]
markup = {
 {ttl = "Hello"},
 "this is a test to show you the possibilities of xml in Nspire lua",
 "It's very simple, just type a tag like <ttl> and than your title",
 {img = "\030\000\000\000\030\000\000\037\/*find yourself a pic to insert, it would be too long to post */137\194\137\194\137\198\207\210x\235\000\000\000\000"},
 "and it automatically scrolls down to the next line after the image",
 "this is the last sentence!"
}

for i, v in ipairs(markup) do
local t = type(v)
if t == "table" then
if v.ttl then print('Title: ', v.ttl)
elseif v.img then print('Image: ', v.img)
end
else
print(v)
end
end

i think i'll just upload them to my own site and refer to that page, since i don't manage to get the github working xs i followed the tutorial to install it, and i did everything required, but it does not work xs

You can also the easy to use Gist.

Pages: 1 ... 18 19 [20] 21 22 ... 55