• add group = "new group" can't be right
    when I rightclick on the project and select "new group" I get a group named "new group" and the only means (I can find) is to edit the project files to get the name I want
  • Feature request: add Windowing functions to CMSIS-DSP
    CMSIS-DSP offers some functions to perform FFT (Fast Fourier Transform). An usual approach, before a FFT, is to apply a window, for example to reduce leakage effect. A lot of different window have...
  • Request for forum feature
    The original thread with a request for forum improvements is dead because of a bug in the forum system, so I'll just have to start a new one. Anyway, one feature that would be nice to have is to...
  • How to add assemblely file in same Group
    My code is all edit by assembly ,My solution is only one assembly file in Project,others using #include function.It's really unconvenience,Any one has solution ? Thanks in advance
  • How to add header file to project
    This is my code for time delay. .#include<regx51.h> #define led P2 void delay (int i); void main() { while (1) { led = 0x01; delay(500); led = 0x01; delay(500) ; } } void delay (int i...