• INVALID ABSOLUTE BASE/OFFS VALUE
    Hi, I am using uvision version 8.16 I am getting error A80: INVALID ABSOLUTE BASE/OFFS VALUE. line at which it points out error is "SEGMENT EDATA AT (07F0000h+RESERVED_START)" My code...
  • rounding a float to an integer
    Hi all, I like to round a float to the nearest integer value and assign the value to an integer. How do I do that in C code? In know it is something with "round" but I can not find the proper syntacs...
  • round result of floating point calcualtion
    Hello, I have a problem with the accuracy of the result when I divide 2 float values. This is the line in my source Code: dds_word.long_dds = 2.147483648E16 / 7.1312E7 The result which I...
  • RTX Tiny: Round-robin questions
    The RTX51 Tiny "tips" article states the following: Round-robin multitasking is preemptive. It interrupts your task and switches to a new task after the specified number of OS ticks. Refer to CONF_TNY...
  • Function return value if () are missing
    As I am sure most of us have at some time, I have ocasionally missed the () off the end when calling a function. e.g myFunction; instead of myFunction(); When I do this the code compiles and...