<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Uart on Tuxotronic</title>
    <link>https://tuxotronic.org/tags/uart/</link>
    <description>Recent content in Uart on Tuxotronic</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>ru</language>
    <lastBuildDate>Fri, 11 Nov 2016 11:11:11 +0300</lastBuildDate><atom:link href="https://tuxotronic.org/tags/uart/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>ESP8266 WiFi SoC</title>
      <link>https://tuxotronic.org/wiki/component/esp8266/</link>
      <pubDate>Fri, 11 Nov 2016 11:11:11 +0300</pubDate>
      
      <guid>https://tuxotronic.org/wiki/component/esp8266/</guid>
      <description>https://github.com/esp8266/esp8266-wiki/wiki https://nurdspace.nl/ESP8266  Tools  PlatformIO Arduino IDE  Firmware  ESP Link - преобразователь WiFi в Uart. NodeMCU - брать прошивки лучше именно со страницы релизов, а не бинарники из репозитория. luatool Tool for loading Lua-based scripts from file to ESP8266 with nodemcu firmware. https://github.com/nekromant/esp8266-frankenstein Прошивка TCP2UART переходника с настройкой по Web. //не проверено// [Transparent TCP-UART bridge with support to flash arduino and ARM systems(https://github.com/jeelabs/esp8266-bridge). //не проверено// Absolutely transparent bridge for the ESP8266.</description>
    </item>
    
    <item>
      <title>RS-485 pinout</title>
      <link>https://tuxotronic.org/wiki/interface/rs485/</link>
      <pubDate>Thu, 06 May 2010 00:00:00 +0300</pubDate>
      
      <guid>https://tuxotronic.org/wiki/interface/rs485/</guid>
      <description>Варианты распиновки RS-485 http://www.lammertbies.nl/comm/cable/unitronics-rj11.html
CU4 ADP485</description>
    </item>
    
    <item>
      <title>LPC2368 UART init</title>
      <link>https://tuxotronic.org/wiki/snippets/lpc2368-uart-init/</link>
      <pubDate>Tue, 28 Oct 2008 00:00:00 +0300</pubDate>
      
      <guid>https://tuxotronic.org/wiki/snippets/lpc2368-uart-init/</guid>
      <description>void uartInit(unsigned long baudrate) { /*------------------------------------------------ Setup serial port registers. ------------------------------------------------*/ PCONP |= (1&amp;lt;&amp;lt;3); // PCUART0 UART0 power/clock control bit.  PINSEL0 |= (1&amp;lt;&amp;lt;(2*2)) | (1&amp;lt;&amp;lt;(2*3)); /* Enable TXD0, RXD0 */ U0LCR = 0x03; /* 8 bits, no Parity, 1 Stop bit */ U0IER = 0; /* Disable UART1 Interrupts */ U0FCR = 0x07; unsigned long DLreload; DLreload = ((Fpclk / 16UL) + (baudrate-1)) / baudrate; U0LCR |= 0x80; /* Set DLAB */ U0DLL = DLreload; U0DLM = (DLreload &amp;gt;&amp;gt; 8); U0LCR &amp;amp;= ~0x80; /* Clear DLAB */ } char uartGetc(void) { while (!</description>
    </item>
    
    <item>
      <title>SPI to UART</title>
      <link>https://tuxotronic.org/wiki/protocol/spi2uart/</link>
      <pubDate>Tue, 28 Oct 2008 00:00:00 +0300</pubDate>
      
      <guid>https://tuxotronic.org/wiki/protocol/spi2uart/</guid>
      <description>Запись в TX FIFO Байт 0:
   Dir 7 6 5 4 3 2 1 0     DI 1 x x x x x x x   DO tx_free 3 2 1 0 rx_ready 3 2 1 0    Далее передаются байты данных, в количестве не более чем tx_free.
Байт N:
   Dir 7 6 5 4 3 2 1 0     DI data 7 6 5 4 3 2 1 0   DO tx_free 3 2 1 0 x x x x    Чтение из RX FIFO Байт 0:</description>
    </item>
    
  </channel>
</rss>
