• 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
  • Targets, Groups, Files
    I can't seem to find the "Targets, Groups, Files" menu entry within the "Project" menu. Am I missing something fundamental? Maybe "advanced" menus need to be enabled somehow? Thanks! -Martin
  • Arranging File Groups in Directories
    Hi, I'm a newbie to 8051 Keil's IDE. I would like to arrange several file groups, which have mutual meaning, under a sub-directory. This sub-directory will then be included directly under the project...
  • Feature Request: uVision Automatically add header file to group
    Feature Request: uVision When I am writing an application I like to have the header files in a project group so that they are easily accessible. Right clicking a group, selecting "Add New Item to...
  • 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...