Search found 55 matches

by Angel
Thu Jan 17, 2013 10:39 am
Forum: Hardware
Topic: Overclocked
Replies: 3
Views: 4894

Overclocked

Traducir del: inglés Escribe texto o la dirección de un sitio web, o bien, traduce un documento. Cancelar Ejemplo del uso de "": traducido automáticamente por Google español inglés francés Hi all! The uzebox Overclocked to 28.61818Mhz, would it be possible to increase the speed? How high? ...
by Angel
Fri Dec 16, 2011 7:03 pm
Forum: Uzebox Emulator
Topic: RAM
Replies: 1
Views: 3850

RAM

Hi!

Can I simulate with the emulator that I have anything connected at terminals? :oops:

For example: my didactic PLC had a display and a motor connected ;)



It could be simulated a RAM memory? :twisted:

Thanks
by Angel
Fri Dec 16, 2011 6:52 pm
Forum: Hardware
Topic: Flash
Replies: 1
Views: 2758

Flash

Hi!

Can I rewrite memory flash while the program is running? :oops: :oops:

Thanks
by Angel
Mon Nov 28, 2011 5:13 pm
Forum: Programming & Software
Topic: mode 3
Replies: 8
Views: 5807

Re: mode 3

I´ve executed this code in mode video 8 #include <stdbool.h> #include <avr/io.h> #include <stdlib.h> #include <avr/pgmspace.h> #include <avr/interrupt.h> #include "uzebox.h" int main(){ //Clear the screen (fills the vram with tile zero) ClearVram(); palette[0]=255; palette[1]=246; palette[...
by Angel
Sun Nov 27, 2011 9:30 am
Forum: Programming & Software
Topic: mode 3
Replies: 8
Views: 5807

Re: mode 3

Hi Angel, bool PutPixelToRam(uchar roff, uchar off, uchar len, uchar color) Where did you get this reference from? It is not a Mode 3 API function.... -Uze I consulted the wiki ;) http://uzebox.org/wiki/index.php?title=Ram_Tile_Effects_Primer I've probably misused the function :oops: Can you tell m...
by Angel
Sat Nov 26, 2011 9:55 pm
Forum: Programming & Software
Topic: mode 3
Replies: 8
Views: 5807

Re: mode 3

No work!! :roll: #include <stdbool.h> #include <avr/io.h> #include <stdlib.h> #include <avr/pgmspace.h> #include <uzebox.h> int main(){ ClearVram(); PutPixelToRam(100,100,1,3); while(1); } The error is: :evil: C:\Documents and Settings\Apocalipsis\Escritorio\mi-uzebox\mi_proyecto_5\Tutorial\default/...
by Angel
Sat Nov 26, 2011 8:44 pm
Forum: Programming & Software
Topic: mode 3
Replies: 8
Views: 5807

Re: mode 3

Code: Select all

bool PutPixelToRam(uchar roff, uchar off, uchar len, uchar color)
by Angel
Sat Nov 26, 2011 6:26 pm
Forum: Programming & Software
Topic: mode 3
Replies: 8
Views: 5807

mode 3

Hello!

I'm working on mode 3. Can I paint a blue pixel? How can I do it?

Thanks
by Angel
Fri Sep 16, 2011 6:21 pm
Forum: Programming & Software
Topic: Contiki OS
Replies: 2
Views: 2322

Contiki OS

Hi!! Surfing the Internet I've found this: http://www.contiki-os.org/ http://en.wikipedia.org/wiki/Contiki Despite providing multitasking and a built-in TCP/IP stack, Contiki only needs a few kilobytes of code and a few hundred bytes of RAM. A full system, complete with a graphical user interface, n...
by Angel
Fri Sep 02, 2011 9:23 pm
Forum: Programming & Software
Topic: Why not work?
Replies: 5
Views: 2861

Re: Why not work?

I think I begin to understand it I have done a little example. based on http://uzebox.org/forums/viewtopic.php?p=5419#p5419 #include <stdbool.h> #include <avr/io.h> #include <stdlib.h> #include <avr/pgmspace.h> #include <uzebox.h> #include "data/fonts6x8.inc" int main(){ SetTileTable(font)...