/hardware/bsp/intel/peripheral/libupm/src/rgbringcoder/ |
D | rgbringcoder.cxx | 43 m_gpioEn.write(0); in RGBRingCoder() 47 m_gpioLatch.write(0); in RGBRingCoder() 51 m_gpioLatch.write(1); in RGBRingCoder() 55 m_gpioClock.write(0); in RGBRingCoder() 59 m_gpioData.write(0); in RGBRingCoder() 64 m_gpioSwitch.write(0); in RGBRingCoder() 82 m_pwmRed.write(0.99); in RGBRingCoder() 87 m_pwmGreen.write(0.99); in RGBRingCoder() 92 m_pwmBlue.write(0.99); in RGBRingCoder() 159 m_gpioLatch.write(0); in setRingLEDS() [all …]
|
/hardware/bsp/intel/peripheral/libupm/src/st7735/ |
D | st7735.cxx | 83 ST7735::write (uint8_t value) { in write() function in ST7735 101 write (*(addr++)); // Read, issue command in executeCMDList() 124 write (ST7735_CASET); // Column addr set in setAddrWindow() 131 m_spi.write(m_spiBuffer, 4); in setAddrWindow() 133 write (ST7735_RASET); // Row addr set in setAddrWindow() 140 m_spi.write(m_spiBuffer, 4); in setAddrWindow() 142 write (ST7735_RAMWR); // write to RAM in setAddrWindow() 160 m_spi.write(&m_map[fragment * fragmentSize], fragmentSize); in refresh() 170 m_rSTPinCtx.write(HIGH); in configModule() 172 m_rSTPinCtx.write(LOW); in configModule() [all …]
|
/hardware/bsp/intel/soc/common/tools/ |
D | gpt_ini2bin.py | 63 out.write(struct.pack('<I', magic)) 64 out.write(struct.pack('<I', start_lba)) 65 out.write(struct.pack('<I', npart)) 68 out.write(struct.pack('<i', int(length))) 71 out.write(zero_pad(label, 36 * 2)) 75 out.write(guid_type.bytes_le) 78 out.write(guid.bytes_le)
|
/hardware/bsp/intel/peripheral/libupm/examples/c++/ |
D | lcm1602-i2c.cxx | 33 lcd->write("Hello World"); in main() 37 lcd->write("Hello World"); in main() 40 lcd->write("Hello World"); in main() 43 lcd->write("Hello World"); in main()
|
D | jhd1313m1-lcd.cxx | 34 lcd->write("Hello World"); in main() 36 lcd->write("Hello World"); in main()
|
/hardware/bsp/intel/peripheral/libupm/examples/java/ |
D | Lcm1602_i2cSample.java | 42 lcd.write("Hello World"); in main() 46 lcd.write("Hello World"); in main() 50 lcd.write("Hello World"); in main() 54 lcd.write("Hello World"); in main()
|
/hardware/libhardware_legacy/qemu_tracing/ |
D | qemu_tracing.c | 45 write(fd, "1\n", 2); in qemu_start_tracing() 55 write(fd, "0\n", 2); in qemu_stop_tracing() 70 write(fd, buf, strlen(buf)); in qemu_add_mapping() 83 write(fd, buf, strlen(buf)); in qemu_remove_mapping()
|
/hardware/bsp/intel/peripheral/libupm/src/tm1637/ |
D | javaupm_tm1637.i | 6 %varargs(4, int digit = 0) write; 8 %rename("writeArray") write(uint8_t *digits); 9 %rename("writeString") write(std::string digits);
|
D | jsupm_tm1637.i | 5 %varargs(4, int digit = 0) write; 7 %rename("writeArray") write(uint8_t *digits); 8 %rename("writeString") write(std::string digits);
|
D | tm1637.h | 102 mraa_result_t write(uint8_t *digits); 109 mraa_result_t write(int d, ...); 124 mraa_result_t write(std::string digits);
|
/hardware/bsp/intel/peripheral/libupm/examples/javascript/ |
D | oled_ssd1306.js | 98 lcd.write("Hello"); 100 lcd.write("World!"); 145 lcd.write("All"); 147 lcd.write("Done!");
|
D | at42qt1070.js | 33 process.stdout.write("Buttons Pressed: "); 38 process.stdout.write(i + " "); 44 process.stdout.write("None");
|
D | eboled.js | 64 oled.write("HELLO WORLD! Mixed with #123 and y's, g's and q's."); 70 oled.write("BOO!"); 78 oled.write("Cutout"); 132 oled.write("Cancel");
|
D | rgb-lcd.js | 39 myLcd.write('Hello World'); 41 myLcd.write('Hello World');
|
/hardware/bsp/intel/peripheral/libupm/src/max5487/ |
D | max5487.cxx | 60 uint8_t* retData = m_spi.write(data, 2); in setWiperA() 74 uint8_t* retData = m_spi.write(data, 2); in setWiperB() 87 return m_csnPinCtx.write(LOW); in CSOn() 92 return m_csnPinCtx.write(HIGH); in CSOff()
|
/hardware/bsp/intel/peripheral/libupm/src/my9221/ |
D | my9221.cxx | 77 error = m_dataPinCtx.write(LOW); in lockData() 81 error = m_dataPinCtx.write(HIGH); in lockData() 82 error = m_dataPinCtx.write(LOW); in lockData() 92 error = m_dataPinCtx.write(state); in send16bitBlock() 101 error = m_clkPinCtx.write(state); in send16bitBlock()
|
/hardware/bsp/intel/peripheral/libupm/src/lcd/ |
D | lcm1602.cxx | 127 m_gpioRS->write(0); in Lcm1602() 128 m_gpioEnable->write(0); in Lcm1602() 191 Lcm1602::write(std::string msg) in write() function in Lcm1602 394 m_gpioRS->write(mode); in send() 417 ret = m_gpioD0->write( ((value >> 0) & 0x01) ); in write4bits() 418 ret = m_gpioD1->write( ((value >> 1) & 0x01) ); in write4bits() 419 ret = m_gpioD2->write( ((value >> 2) & 0x01) ); in write4bits() 420 ret = m_gpioD3->write( ((value >> 3) & 0x01) ); in write4bits() 454 ret = m_gpioEnable->write(0); in pulseEnable() 456 ret = m_gpioEnable->write(1); in pulseEnable() [all …]
|
/hardware/bsp/intel/peripheral/libmraa/examples/python/ |
D | uart_sender.py | 28 sys.stdout.write("Initializing UART...") 39 u.write(msg_b) 50 sys.stdout.write("Two-way, half-duplex communication, sending a flag...")
|
D | blink-io8.py | 32 x.write(1) 34 x.write(0)
|
/hardware/bsp/intel/peripheral/libupm/src/max31723/ |
D | max31723.cxx | 85 sensorData = m_spi.write(data, 2); in readRegister() 99 sensorData = m_spi.write(buffer, 2); in writeRegister() 105 return m_csnPinCtx.write (HIGH); in CSOn() 110 return m_csnPinCtx.write (LOW); in CSOff()
|
/hardware/bsp/intel/peripheral/libupm/src/grovecircularled/ |
D | grovecircularled.cxx | 107 error = m_dataPinCtx.write (LOW); in lockData() 111 error = m_dataPinCtx.write(HIGH); in lockData() 112 error = m_dataPinCtx.write(LOW); in lockData() 122 error = m_dataPinCtx.write (state); in send16bitBlock() 131 error = m_clkPinCtx.write (state); in send16bitBlock()
|
/hardware/bsp/intel/peripheral/libupm/examples/python/ |
D | at42qt1070.py | 32 sys.stdout.write("Buttons Pressed: ") 35 sys.stdout.write(str(i) + " ") 39 sys.stdout.write("None")
|
D | rgb-lcd.py | 36 myLcd.write('Hello World') 38 myLcd.write('Hello World')
|
D | eboled.py | 33 lcd.write("Hello"); 35 lcd.write("World!");
|
/hardware/bsp/intel/peripheral/libmraa/tests/ |
D | gpio_checks.py | 68 self.pin.write(1) 76 self.pin.write(0) 84 res = self.pin.write(1) 89 res = self.pin.write(0)
|