<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Not able to get serial data from ads1293 sensor using nRF52833</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/127442/not-able-to-get-serial-data-from-ads1293-sensor-using-nrf52833</link><description>Hi, I am working on project to obtain ecg data via bluetooth. But before that I was trying to see whether I could obtain ECG signals serially through nrf52833. And I tried a lot but in segger RTT viewer, I am only seeing zeros. My sensor is ads1293 breakout</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 17 Mar 2026 14:23:39 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/127442/not-able-to-get-serial-data-from-ads1293-sensor-using-nrf52833" /><item><title>RE: Not able to get serial data from ads1293 sensor using nRF52833</title><link>https://devzone.nordicsemi.com/thread/563465?ContentTypeID=1</link><pubDate>Tue, 17 Mar 2026 14:23:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f2797d66-9c81-495d-a45a-8b29517aad6b</guid><dc:creator>Turbo J</dc:creator><description>&lt;p&gt;MOSI misconfigured or otherwise in use on the DK. Try a different pin. Note that there are quite a few connected to other hardware and should not be used externally.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to get serial data from ads1293 sensor using nRF52833</title><link>https://devzone.nordicsemi.com/thread/563420?ContentTypeID=1</link><pubDate>Tue, 17 Mar 2026 10:24:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6498978a-0287-4b60-8a6b-1698fb715424</guid><dc:creator>Suryalakshmi</dc:creator><description>&lt;p&gt;I was talking about the nRF52833 DK.&amp;nbsp; I used oscilloscope but both MOSI and MISO are flat. I am trying to find out why it&amp;#39;s happening.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to get serial data from ads1293 sensor using nRF52833</title><link>https://devzone.nordicsemi.com/thread/563399?ContentTypeID=1</link><pubDate>Tue, 17 Mar 2026 07:46:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6c827992-bcae-4d98-a509-be9443213724</guid><dc:creator>Turbo J</dc:creator><description>&lt;p&gt;What NRF52833 board are you talking about? The DK is set up correctly when you can flash and debug your code.&lt;/p&gt;
&lt;p&gt;No idea why your SPI communication fails - you will need to use some kind of oscilloscope or logic analyser (LA) here. I still suspect that the TI ADS chip just refuses to talk to you at all.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to get serial data from ads1293 sensor using nRF52833</title><link>https://devzone.nordicsemi.com/thread/563394?ContentTypeID=1</link><pubDate>Tue, 17 Mar 2026 06:42:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:70c55581-2c58-4d69-9ba8-2c57a10c4562</guid><dc:creator>Suryalakshmi</dc:creator><description>&lt;p&gt;I tried so much. Still no impovement. Now I suspect whether if it is a software issue. There are many deep switches in the nrf52833 board. What should be there status? Currently the way I have kept them allows me to connect to J link and flash codes in my board. Does the configuration changes or something during SPI communication?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to get serial data from ads1293 sensor using nRF52833</title><link>https://devzone.nordicsemi.com/thread/563367?ContentTypeID=1</link><pubDate>Mon, 16 Mar 2026 17:20:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1d9f7444-c596-4645-8855-d38438b1a2df</guid><dc:creator>hmolesworth</dc:creator><description>&lt;p&gt;If&amp;nbsp;you see nothing on MOSI, perhaps try adding:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;   nrf_gpio_pin_set(MOSI_PIN);
   nrf_gpio_cfg_output(MOSI_PIN);&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;SPI transfers data in via MISO every clock cycle, so when sending a command byte and receiving a data byte 16 clock cycles are used and so 2 bytes are received with the required data in the 2nd byte, not the first.&lt;/p&gt;
&lt;p&gt;Try changing to 2-byte receive, something like this:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;uint8_t spi_transfer(uint8_t data)
{
  uint8_t rx[2];
  APP_ERROR_CHECK(
    nrf_drv_spi_transfer(&amp;amp;spi, &amp;amp;data, 1, &amp;amp;rx, 2)
  );
  return rx[1];
}

&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Also not sure but the ADS1293 might require a command to start the clock&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to get serial data from ads1293 sensor using nRF52833</title><link>https://devzone.nordicsemi.com/thread/563328?ContentTypeID=1</link><pubDate>Mon, 16 Mar 2026 12:26:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ca6c732d-c986-4def-956a-9361ca405172</guid><dc:creator>Suryalakshmi</dc:creator><description>&lt;p&gt;I changed CS pin from P0.11 To P0.13. But it didn&amp;#39;t made any changes. Still SPI is not communicating&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to get serial data from ads1293 sensor using nRF52833</title><link>https://devzone.nordicsemi.com/thread/563323?ContentTypeID=1</link><pubDate>Mon, 16 Mar 2026 12:17:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f889eb1d-38e9-4cd8-8f8e-a4cd176a22a2</guid><dc:creator>Suryalakshmi</dc:creator><description>&lt;p&gt;The SCK is having signal but MISO and MOSI are both flat when I checked with oscilloscope. What will be the main difference if I switch to NCS SDK.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to get serial data from ads1293 sensor using nRF52833</title><link>https://devzone.nordicsemi.com/thread/563309?ContentTypeID=1</link><pubDate>Mon, 16 Mar 2026 10:33:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9f247f09-d51a-468f-a53a-88f252dc70cd</guid><dc:creator>Kazi Afroza Sultana</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Pin P0.12 and P0.11 are used for trace buffer pin also. You have ECG project, You are not actively using trace but debugger may automatically enable it during debug session, that can potentially interfere with the SPI CS signal. You can try to use another available pin for CS?&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;
&lt;p&gt;BR&lt;/p&gt;
&lt;p&gt;Kazi&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to get serial data from ads1293 sensor using nRF52833</title><link>https://devzone.nordicsemi.com/thread/563274?ContentTypeID=1</link><pubDate>Mon, 16 Mar 2026 06:44:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:113c8c75-0e3a-4870-9914-3ae04d0a35ff</guid><dc:creator>Turbo J</dc:creator><description>&lt;p&gt;My general recommendation with these ADCs is: Check all of the basics. That is both analog and digital supply voltages and the pin config for the clock. Rev ID all zeros means the chip won&amp;#39;t bother talking to you at all.&lt;/p&gt;
&lt;p&gt;Otherwise: Oscilloscope.&lt;/p&gt;
&lt;p&gt;Oh, and swich your code over to NCS SDK. Code looks like its still on the old unsuported stuff.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to get serial data from ads1293 sensor using nRF52833</title><link>https://devzone.nordicsemi.com/thread/563273?ContentTypeID=1</link><pubDate>Mon, 16 Mar 2026 06:27:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bba65efd-30d9-43ed-8614-955ceeadab24</guid><dc:creator>Suryalakshmi</dc:creator><description>&lt;p&gt;Actually the PCB works at 3.3V. It uses logic level shifter for Arduino.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to get serial data from ads1293 sensor using nRF52833</title><link>https://devzone.nordicsemi.com/thread/563272?ContentTypeID=1</link><pubDate>Mon, 16 Mar 2026 06:24:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c6018701-3761-4684-b381-22c7726747eb</guid><dc:creator>Turbo J</dc:creator><description>&lt;p&gt;If that PCB was set up for the 5V arduino UNO, its &lt;strong&gt;not&lt;/strong&gt;&amp;nbsp;compatible with any NRF5xxxx MCU chip. Those are NOT 5V tolerant.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>