<?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>Putty Displaying   this weird character ▒▒0▒▒▒▒▒▒3^▒▒▒▒▒▒▒▒▒▒▒▒▒d▒▒▒▒▒ . How to solve it ??</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/55223/putty-displaying-this-weird-character-0-3-d-how-to-solve-it</link><description>I already follow the link for terminal in this link https://infocenter.nordicsemi.com/index.jsp?topic=%2Fsdk_nrf5_v16.0.0%2Flib_cli.html&amp;amp;cp=6_1_3_10_3&amp;amp;anchor=lib_cli_terminal_settings . 
 
 From android apps sent message to mcu the message is not display</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Sun, 29 Dec 2019 09:53:24 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/55223/putty-displaying-this-weird-character-0-3-d-how-to-solve-it" /><item><title>RE: Putty Displaying   this weird character ▒▒0▒▒▒▒▒▒3^▒▒▒▒▒▒▒▒▒▒▒▒▒d▒▒▒▒▒ . How to solve it ??</title><link>https://devzone.nordicsemi.com/thread/227011?ContentTypeID=1</link><pubDate>Sun, 29 Dec 2019 09:53:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cc18599d-58b6-45e1-8e64-40924bb90c00</guid><dc:creator>ox00</dc:creator><description>&lt;p&gt;Already solved it because the speed in putty i set 15200. Not 115200&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Putty Displaying   this weird character ▒▒0▒▒▒▒▒▒3^▒▒▒▒▒▒▒▒▒▒▒▒▒d▒▒▒▒▒ . How to solve it ??</title><link>https://devzone.nordicsemi.com/thread/225875?ContentTypeID=1</link><pubDate>Tue, 17 Dec 2019 12:50:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4ea73abd-3a5d-4277-9fdd-08bc5aa4b8a4</guid><dc:creator>Amanda Hsieh</dc:creator><description>&lt;p&gt;Hi,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;If you want to use the terminal tool to see the log, please add the following setting in the sdk_config.h&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;// &amp;lt;e&amp;gt; NRF_LOG_BACKEND_UART_ENABLED - nrf_log_backend_uart - Log UART backend
//==========================================================
#ifndef NRF_LOG_BACKEND_UART_ENABLED
#define NRF_LOG_BACKEND_UART_ENABLED 1
#endif
// &amp;lt;o&amp;gt; NRF_LOG_BACKEND_UART_TX_PIN - UART TX pin 
#ifndef NRF_LOG_BACKEND_UART_TX_PIN
#define NRF_LOG_BACKEND_UART_TX_PIN 6
#endif

// &amp;lt;o&amp;gt; NRF_LOG_BACKEND_UART_BAUDRATE  - Default Baudrate
 
// &amp;lt;323584=&amp;gt; 1200 baud 
// &amp;lt;643072=&amp;gt; 2400 baud 
// &amp;lt;1290240=&amp;gt; 4800 baud 
// &amp;lt;2576384=&amp;gt; 9600 baud 
// &amp;lt;3862528=&amp;gt; 14400 baud 
// &amp;lt;5152768=&amp;gt; 19200 baud 
// &amp;lt;7716864=&amp;gt; 28800 baud 
// &amp;lt;10289152=&amp;gt; 38400 baud 
// &amp;lt;15400960=&amp;gt; 57600 baud 
// &amp;lt;20615168=&amp;gt; 76800 baud 
// &amp;lt;30801920=&amp;gt; 115200 baud 
// &amp;lt;61865984=&amp;gt; 230400 baud 
// &amp;lt;67108864=&amp;gt; 250000 baud 
// &amp;lt;121634816=&amp;gt; 460800 baud 
// &amp;lt;251658240=&amp;gt; 921600 baud 
// &amp;lt;268435456=&amp;gt; 1000000 baud 

#ifndef NRF_LOG_BACKEND_UART_BAUDRATE
#define NRF_LOG_BACKEND_UART_BAUDRATE 30801920
#endif

// &amp;lt;o&amp;gt; NRF_LOG_BACKEND_UART_TEMP_BUFFER_SIZE - Size of buffer for partially processed strings. 
// &amp;lt;i&amp;gt; Size of the buffer is a trade-off between RAM usage and processing.
// &amp;lt;i&amp;gt; if buffer is smaller then strings will often be fragmented.
// &amp;lt;i&amp;gt; It is recommended to use size which will fit typical log and only the
// &amp;lt;i&amp;gt; longer one will be fragmented.

#ifndef NRF_LOG_BACKEND_UART_TEMP_BUFFER_SIZE
#define NRF_LOG_BACKEND_UART_TEMP_BUFFER_SIZE 64
#endif

// &amp;lt;/e&amp;gt;&lt;/pre&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Also, enable&amp;nbsp;NRF_LOG_ENABLED as&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;// &amp;lt;e&amp;gt; NRF_LOG_ENABLED - nrf_log - Logger
//==========================================================
#ifndef NRF_LOG_ENABLED
#define NRF_LOG_ENABLED 1
#endif&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;-Amanda H.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Putty Displaying   this weird character ▒▒0▒▒▒▒▒▒3^▒▒▒▒▒▒▒▒▒▒▒▒▒d▒▒▒▒▒ . How to solve it ??</title><link>https://devzone.nordicsemi.com/thread/225841?ContentTypeID=1</link><pubDate>Tue, 17 Dec 2019 10:19:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:12a05a6f-2875-463a-b445-39262256eee6</guid><dc:creator>ox00</dc:creator><description>&lt;p&gt;I already upload it to gist at github. Here the link&amp;nbsp;&lt;a href="https://gist.github.com/zawawimanja/0df14f7bcf295656a04f5fc58959233b"&gt;https://gist.github.com/zawawimanja/0df14f7bcf295656a04f5fc58959233b&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Putty Displaying   this weird character ▒▒0▒▒▒▒▒▒3^▒▒▒▒▒▒▒▒▒▒▒▒▒d▒▒▒▒▒ . How to solve it ??</title><link>https://devzone.nordicsemi.com/thread/225068?ContentTypeID=1</link><pubDate>Thu, 12 Dec 2019 07:04:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7b04a6d7-cadb-4d8e-b1ea-76803d69becf</guid><dc:creator>Amanda Hsieh</dc:creator><description>&lt;p&gt;Hi,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
[quote user="ox00"]#define HCI_UART_BAUDRATE 30801920&amp;nbsp; &amp;nbsp;in sdk_config.h&amp;nbsp;[/quote]
&lt;p&gt;&amp;nbsp;In the &lt;span&gt;sdk_config.h,&amp;nbsp;&lt;/span&gt;30801920 means 115200 baud.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
[quote user="ox00"]in putty is 115200. Do I need to change the speed in sdk_config.h ?[/quote]
&lt;p&gt;The setting should be fine on the both sides.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Could you share the sdk_config.h?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;-Amanda H&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Putty Displaying   this weird character ▒▒0▒▒▒▒▒▒3^▒▒▒▒▒▒▒▒▒▒▒▒▒d▒▒▒▒▒ . How to solve it ??</title><link>https://devzone.nordicsemi.com/thread/225058?ContentTypeID=1</link><pubDate>Thu, 12 Dec 2019 02:51:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:51558b8d-d75e-4ee8-9da9-a6ac4bd46aae</guid><dc:creator>ox00</dc:creator><description>&lt;p&gt;#define HCI_UART_BAUDRATE 30801920&amp;nbsp; &amp;nbsp;in sdk_config.h&amp;nbsp;&lt;/p&gt;
&lt;p&gt;in putty is 115200. Do I need to change the speed in sdk_config.h ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Putty Displaying   this weird character ▒▒0▒▒▒▒▒▒3^▒▒▒▒▒▒▒▒▒▒▒▒▒d▒▒▒▒▒ . How to solve it ??</title><link>https://devzone.nordicsemi.com/thread/224360?ContentTypeID=1</link><pubDate>Mon, 09 Dec 2019 09:57:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b84fb57f-2be9-4ecf-b46d-64d8e2452a3c</guid><dc:creator>Amanda Hsieh</dc:creator><description>&lt;p&gt;Hi,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;What is your speed of putty and the&amp;nbsp;NRF_LOG_BACKEND_UART_BAUDRATE value in the sdk_config.h?&lt;/p&gt;
[quote user="ox00"]Does not make sense because when installing at other computer is ok.[/quote]
&lt;p&gt;I am not confident to have a solution. If the issue only happened to the specific computer instead of others, I would suggest using others.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;What example are you using?&lt;/p&gt;
&lt;p&gt;Do you have nRF52840DK? If so, could you run the&amp;nbsp;&lt;a title="BSP Example" href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v16.0.0/bsp_example.html?cp=6_1_4_6_4"&gt;BSP Example&lt;/a&gt;? Also, follow the setting:&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Start a terminal emulator like PuTTY and connect to the used COM port with the following UART settings:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Baud rate: 115.200&lt;/li&gt;
&lt;li&gt;8 data bits&lt;/li&gt;
&lt;li&gt;1 stop bit&lt;/li&gt;
&lt;li&gt;No parity&lt;/li&gt;
&lt;li&gt;HW flow control: None&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Do you also see the same issue while executing the example?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;-Amanda H.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Putty Displaying   this weird character ▒▒0▒▒▒▒▒▒3^▒▒▒▒▒▒▒▒▒▒▒▒▒d▒▒▒▒▒ . How to solve it ??</title><link>https://devzone.nordicsemi.com/thread/224059?ContentTypeID=1</link><pubDate>Fri, 06 Dec 2019 06:45:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:daf72398-1ca9-4d85-b845-bb71c0fcd4de</guid><dc:creator>ox00</dc:creator><description>&lt;p&gt;Does not make sense because when installing at other computer is ok. already unistall &amp;amp; reinstall back nothing work.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Putty Displaying   this weird character ▒▒0▒▒▒▒▒▒3^▒▒▒▒▒▒▒▒▒▒▒▒▒d▒▒▒▒▒ . How to solve it ??</title><link>https://devzone.nordicsemi.com/thread/223934?ContentTypeID=1</link><pubDate>Thu, 05 Dec 2019 13:55:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cd3569d7-5681-4d39-ac18-18a60d6e2692</guid><dc:creator>bjammin</dc:creator><description>&lt;p&gt;another post recommends checking the settings in&amp;nbsp;&lt;span&gt;sdk_config.h also.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Putty Displaying   this weird character ▒▒0▒▒▒▒▒▒3^▒▒▒▒▒▒▒▒▒▒▒▒▒d▒▒▒▒▒ . How to solve it ??</title><link>https://devzone.nordicsemi.com/thread/223930?ContentTypeID=1</link><pubDate>Thu, 05 Dec 2019 13:44:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3b9d6de9-ba89-4238-803e-fe6953b1c1b2</guid><dc:creator>ox00</dc:creator><description>&lt;p&gt;everthing is right. Dont know what is wrong.Maybe I will uninstall putty and reinstall back.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Putty Displaying   this weird character ▒▒0▒▒▒▒▒▒3^▒▒▒▒▒▒▒▒▒▒▒▒▒d▒▒▒▒▒ . How to solve it ??</title><link>https://devzone.nordicsemi.com/thread/223738?ContentTypeID=1</link><pubDate>Thu, 05 Dec 2019 02:54:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:800a7008-827a-4b8d-a94d-94a5e93ba6a9</guid><dc:creator>bjammin</dc:creator><description>&lt;p&gt;Does it work at all? I&amp;#39;d check that your Speed is set right (and data and stop bits).&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>