• uV3 editor suggestion
    In vU3 editor, when the 'ctrl' key is held down and we scrool in midbutton of the mouse, we expect the same effect as 'page up', 'page down'. This is implemented in uV2 editor, why missing in uV3?
  • UV3 editor crashs using collapse
    Hi folks I'm using UV3 (V3.33) and if I collapse and uncollapse few block from my C-code the UV3 crashs. This behaviour happens on different PCs up to P-4 3GHz. Is there a bugfix in the queue...
  • UV3 editor and required PC speed
    Hi folks I'm using UV3 IDE (V3.33) on a HP Omnibook with Pentium III 850MHz. While the previous version has had any problem inside the editor this one is unusable. Deleting characters in a line...
  • Debug Editor in uV3 won't compile
    I have defined a function in the Function editor, saved it, then tried to compile, and I get a compile error: FUNC void FooBar (void) { printf("foobar"); } ^ *** error 10, line 3: Syntax error ***...
  • serious bug how is it fixed
    void DelayUSec (uint32_t Time) { Delay_Done = 0; while(!Delay_Done); } void Handler (void) { if (Stat & 0x01) { if (!Delay_Done) Delay_Done = 1; } } it never come out of my loop ...