gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:out_b from mtkernel_3/lib/libtm/sysdepend/iote_rx231/tm_com.c (0.00 seconds)
mtkernel_3
lib/libtm/sysdepend/iote_rx231/tm_com.c - 3.3KB - 97 lines
57:                 while( (in_b(SCI6_SSR) & SSR_TDRE) == 0);
58:                 out_b( SCI6_TDR, *b );
59:         }
72: } else if( ssr & SSR_ERR ) { /* check Communication error */ 73: out_b( SCI6_SSR, ssr & ~SSR_ERR); 74: }
83: /* Initialize SCI6 */ 84: out_b(SCI6_SCR, 0x00); // TE = 0 RE = 0 85: out_b(SCI6_SCMR, 0xF2); // LSB first 86: out_b(SCI6_SMR, 0x00); // Data8 Stop1 87: out_b(SCI6_BRR, (PCLK / (64 / 2 * RS_BAUD_RATE)) - 1); // 115.2kbps 88:
91: 92: out_b(SCI6_SCR, 0x30); // TE = 1 RE = 1 93: }