Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by eng.hasan.power

  1. E

    simple application c++

    Thanks bunch Thomas, the problem solved :), it was a library
  2. E

    simple application c++

    Hi everyone, i have a simple question, im not expert with C++ stuff, the question is, my SW is wearching into a text file for a string, then i need to show that string in a Messagebox, and later i will pass it to FPGA, the question not related to FPGA, its a simple C++ (i think), here is my...
  3. E

    Hex to String problem

    thanks aloooot Brian, really appreciated ur effort, its working now :) thanks a Million again Cheers Hasan
  4. E

    Hex to String problem

    for the error i already checked it from long time,,,and non of the solution have worked out,,,,its mainly for the sprintf function,,,,, its the same,,,i said,,, 1- i want the first one, just to convert it to A,:::::: i meant to convert 0x41 to 0x0A 2- i want to display, 0x41 ,,,,as 0x0A...
  5. E

    Hex to String problem

    thanks for ur reply, and the code,,, but i receive a Sytanx error on the line of AsciiResult = (AsciiChar[0] << 4) |= AsciiChar[1]; i have made that code too,,,,,but even without that line, i still dont see the HEX, i only see the ASCII, BYTE AsciiChar[4]; BYTE AsciiResult[2]...
  6. E

    Hex to String problem

    :D :D :D ,,,last time when i replied the space was not working that why i have replaced it with comma, i will repeat it again, may be it was not clear enough the data originally in HEX, but for some reason i convert it to String, (because im sending the same data for more than one device) for...
  7. E

    Hex to String problem

    the,data,originally,was,HEX,,,,,but,i,converted,it,to,STRING,,,like,it,was,,0xA1,,converted,to,,,0x41,,and,,0x31,,,,then,i,send,these,two,values,,,,and,i,receive,them,in,a,buffer...
  8. E

    Hex to String problem

    thanks,for,the,reply, actually,its,four BYTE tempSPI[4] im,receiving,4Byte,for,each,variable, thats,why,the,i,loop,<4,,,,, in,the,for,loop,i,think,we,store,the,data,everytime,in,the,mySPI,as,a,astring sorry,my,space,is,not,working,very,well...
  9. E

    Hex to String problem

    is there is another way instead of Sprinf,
  10. E

    Hex to String problem

    thanks alot Brian but still that error Error - section '.udata_CustomHTTPApp.o' can not fit the section. Section '.udata_CustomHTTPApp.o' length=0x00000103 dont know how to fix it
  11. E

    Hex to String problem

    thank a looot for ur reply, yes, i want the first one, just to convert it to A, i used, for (i=0;i<4;i++) { printf("%c",tempSPI[i]); } then TCPPutArray(sktHTTP, tempSPI, strlen((char*)tempSPI)); but its giving me :::suspicious pointer conversion::: warning...
  12. E

    Hex to String problem

    Hi everyone, im facing a little problem, i wanna convert from Hex to String, i have tempSPI[4],,,which contains the string value represented by HEX,,, for example, 0x41 which is equal A i wanna display that , i wrote that, for (i=0;i<4;i++) { printf("%02x",tempSPI[i])...
  13. E

    string to hex/string problem

    grazie mille, thanks aloot,,its working gr8, really appreciated :) Greetings have a gr8 day, Hasan
  14. E

    Reset the ring Buffer vUARTTXFIFO

    hello everyone, im facing a problem for a week now, and i dont know how to solve it,,,, i want to reset the ring Buffer vUARTTXFIFO , NOW, after i send the command its okay only for the first time, then its not working, i dont receive the value in the first byte, because its ring Buffer, the...
  15. E

    string to hex/string problem

    thanks bunch Brain, but i used it like that, tempTXFrame= 0xea; sprintf(TCPTemp,"%x",tempTXFrame); TXFrame[1] = TCPTemp[0]; TXFrame[2] = TCPTemp[1]; /////////// but i received a warning, >> warning: creating .sysmem section with default size of 400 (hex) words. Use -heap option...

Part and Inventory Search

Back
Top