• Address of xdata structure elements are not linked into code structure
    I created a structure about data fields, which are located in a structure in xdata area. The informal structure itself should be in code area. typedef struct { unsigned char *pucRamAddr; eNvmDevice...
  • symbol declaration, for an C structure element
    If we define struct _footype { char c; int x; } foo; foo would be a linkable symbol, being th aderess of real memory - of sizeof(struct _footype) What can I do to declare a linkable symbol...
  • toggling port pins through an element in a structure
    Here is what I am trying to do: sbit PORT_1_0 = P1^0; void main () { PORT_1_0 = 1; while(1) { PORT_1_0 =~ PORT_1_0; } } Now this is as simple as it gets. The question is, is it possible...
  • Elements in "Peripherals" menu, while debugging, missing.
    MCU: STMicroelectronics STM32F107 Connectivity Line JTAG: ST-Link, 100% compatibile with ULINK IDE: Keil uVision 4.00 While in debug mode I open "Peripherals" menu where I can change "online"...
  • Not able to see the Peripherals window while debugging.
    Hi, using AT91SAM9260 in one of my project and using MDK3.24 for compiling & debugging. The problem is that I'm not able to see the Peripherals window while debugging, i.e. not able to see the different...