• Printing
    Hello, 1) May I know how to print with the "syntax coloring" on? 2) How do you prevent the address,date,time and page number from being printed? I just want to print my code. ( note:- I want to print...
  • __global_reg() don't work correctly
    I declare a global variable: __global_reg(5) pCPUCB_t Cur_CPUCB; Then I assign a value to this variable: Cur_CPUCB = &CPUCB[0]; But a compiler doesn't generate code for this assigments...
  • GPIO not outputting correctly
    Hi, I'm currently working on an STM32F4. RCC->AHB1ENR |= RCC_AHB1ENR_GPIOBEN; GPIOB->MODER |= ((0x01 << 2*8) | (0x01 << 2*7) | (0x01 << 2*5)); GPIOB->OTYPER &= ~(GPIO_OTYPER_OT_8 | GPIO_OTYPER_OT_7...
  • Printing name in Lcd
    hi all.... This is Gaurav Kothari. I want a very small help from you. As i new to programming part, i started my new project of hello world. my lcd prints it perfectly But now i want my lcd to ask the...
  • printing sizeof() values
    I'm trying to print out sizeof() values for some of my structures. They are coming out incorrect. Here is a small table in which I've done this on different platforms: Linux : sizeof(TChannel) = 1460...