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 ponnus

  1. ponnus

    PIC24F16Ka101 RA4 not functioning as digital output

    Hai, When I was unable to drive the pin just like other pins, I thought it is an open-drain output. So, I tried using a 10k pull up resistor,but it didn't worked. Then I've made it open drain by setting ODCAbits.ODA4 = 1; and enabled the internal pull up by setting the corresponding CNPUE1...
  2. ponnus

    PIC24F16Ka101 RA4 not functioning as digital output

    Hai, Thanks for the reply. I have already set it as digital output using TRIS register, and this pin is not multiplexed with analog input. It is multiplexed with these ,PGC3/SOSCO/T1CK/U2CTS/CN0/RA4, but I am not using any of these peripherlals.
  3. ponnus

    PIC24F16Ka101 RA4 not functioning as digital output

    Hai, I am trying to use RA4 pin of PIC24F16KA101 as digital output.It is connected to one of the segments of the 7-segment display. But it is always giving a constant voltage of about 800mv. I am not able to drive this pin. I checked the datasheet to know if it is an open drain, but that is not...
  4. ponnus

    How to get a part of string from another string using pointer?

    Hai, There is an inbuilt function in C to split a string. strtok(); Check it here.... https://www.cplusplus.com/reference/cstring/strtok/
  5. ponnus

    [SOLVED] Configuring GSM modem both as server and client

    Hai, I know this is a very late reply. I'm just posting it to share what I found out. In sim300, client and server cannot be active simultaneously. One should change the configuration when needed. So, I used sim900 which support multiple client- server connections and both client and server can...
  6. ponnus

    [SOLVED] Nmea 0183 device not accepting commands

    Hai, I found out the exact problem. It was my own fault. The weather station has RS 422 OUTPUT. I'm converting it to TTL output (5V) . I've taken the RS422+/- signals from the converter IC in reverse. i.e,RS422+ to the -ve pin and viceversa. Thanks
  7. ponnus

    [General] problem reciving SMS after sending SMS using sim900

    Hai, Are you getting +CMGS response after sending message and are you able to send more than one message? I think you have to send 0x1a, not "0x1a" to end the message. Also, if you use AT+CNMI=2,2,0,0,0, Sim 900 will send the message directly to the device instantly on reception. Hope this helps,
  8. ponnus

    How to receive string using uart on pic18

    Re: HOW to receive string using uart on pic18 Hai nick703, What I understood from the post is that you want to receive a string through Uart, but you don't know the length of the incoming string or they are coming randomly. If the string doesn't ends with a particular character such as CR or...
  9. ponnus

    SIM900 Voice call help

    Hai, In SIM900 datasheet v1_06, it states that, Also, Hope this helps,
  10. ponnus

    PIC24FJ128GA006 serial transmission not working

    Hai, Your code is working for me. How are you checking the transmission?
  11. ponnus

    [AVR] array intialize problem (avr-gcc)

    Try using a fixed size array, such as const uint8_t j[5] = { 0x00,0x01,0x02,0x03,0x04, };
  12. ponnus

    PIC wake up on ADC trigger

    Hai, Thank you for the reply. In the datasheet of ADC, it says that it can wake up the Mcu on interrupt if CPU priority is less than ADC interrupt priority. and But I am afraid that as I am sampling continuously, ADC will give interrupt every time, even when the input is zero. Thanks
  13. ponnus

    PIC wake up on ADC trigger

    PIC wake up on ADC trigger (NOT Duplicate post) Hai Experts, I am using PIC24F16KA101 for reading ADC. Adc signals will be coming randomly, so I am putting the Mcu in sleep mode. I like to wake up the mcu, when the signal crosses a threshold value. When I googled this, I found many topics...
  14. ponnus

    [SOLVED] location of built in functions C30

    Hai, Ok, so the code is compiler generated. I was searching for the source code of builtin functions in the compiler installed directory. Now,I saw the assembly code in Disassembly listing. Thank You
  15. ponnus

    [SOLVED] location of built in functions C30

    Hai everyone, I am asking this just out of curiosity. I am using Microchip C30 compiler to develop EEPROM driver code for PIC24F. During this I used C30 builtin functions such as __builtin_tblwtl(), __builtin_tbloffset etc. How can I find the location of builtin functions? From Wiki I found...

Part and Inventory Search

Back
Top