Jump to content



Photo
- - - - -

Collaborative Project: Revolution-fx


  • Please log in to reply
41 replies to this topic

#41 alias4399

alias4399

    Casio Freak

  • Members
  • PipPipPipPip
  • 180 posts
  • Location:Impossible to say.. Its not like this is a constant!

  • Calculators:
    CFX 9850GB Plus
    FX 9860G

Posted 07 September 2007 - 11:01 AM

Hi kucalc!
Its been a while..

You see to have really taken off with Revolution-FX, I've gotta see these grayscales for myself... :)

Nice work! Its great to see theres still huge interest in this project.
-alias

#42 PierrotLL

PierrotLL

    Newbie

  • Members
  • Pip
  • 25 posts
  • Gender:Male
  • Location:France

  • Calculators:
    fx9860
    Classpad 330

Posted 12 September 2007 - 08:27 AM

Hi kucalc,
Can you write a function which give time in millisecond?
I think that it's useful to have time for the beginning of the execution.
If you just add a RTCReadMillisecond function, we can write RTCReadMillisecond() + 1000*RTCReadSecond() + 60000*RTCReadMinute() etc.

An other idea, I think the function
unsigned char ReadPort_A()
{
	unsigned char port_a;
	port_a = PA.DR.BYTE;
	return port_a;
}
is too long, you can write just
unsigned char ReadPort_A()
{
	return PA.DR.BYTE;
}
or if it product an error
unsigned char ReadPort_A()
{
	return (unsigned char)PA.DR.BYTE;
}





0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users