Home
last modified time | relevance | path

Searched refs:write (Results 1 – 25 of 381) sorted by relevance

12345678910>>...16

/hardware/bsp/intel/peripheral/libupm/src/rgbringcoder/
Drgbringcoder.cxx43 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/
Dst7735.cxx83 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/
Dgpt_ini2bin.py63 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++/
Dlcm1602-i2c.cxx33 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()
Djhd1313m1-lcd.cxx34 lcd->write("Hello World"); in main()
36 lcd->write("Hello World"); in main()
/hardware/bsp/intel/peripheral/libupm/examples/java/
DLcm1602_i2cSample.java42 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/
Dqemu_tracing.c45 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/
Djavaupm_tm1637.i6 %varargs(4, int digit = 0) write;
8 %rename("writeArray") write(uint8_t *digits);
9 %rename("writeString") write(std::string digits);
Djsupm_tm1637.i5 %varargs(4, int digit = 0) write;
7 %rename("writeArray") write(uint8_t *digits);
8 %rename("writeString") write(std::string digits);
Dtm1637.h102 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/
Doled_ssd1306.js98 lcd.write("Hello");
100 lcd.write("World!");
145 lcd.write("All");
147 lcd.write("Done!");
Dat42qt1070.js33 process.stdout.write("Buttons Pressed: ");
38 process.stdout.write(i + " ");
44 process.stdout.write("None");
Deboled.js64 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");
Drgb-lcd.js39 myLcd.write('Hello World');
41 myLcd.write('Hello World');
/hardware/bsp/intel/peripheral/libupm/src/max5487/
Dmax5487.cxx60 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/
Dmy9221.cxx77 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/
Dlcm1602.cxx127 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/
Duart_sender.py28 sys.stdout.write("Initializing UART...")
39 u.write(msg_b)
50 sys.stdout.write("Two-way, half-duplex communication, sending a flag...")
Dblink-io8.py32 x.write(1)
34 x.write(0)
/hardware/bsp/intel/peripheral/libupm/src/max31723/
Dmax31723.cxx85 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/
Dgrovecircularled.cxx107 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/
Dat42qt1070.py32 sys.stdout.write("Buttons Pressed: ")
35 sys.stdout.write(str(i) + " ")
39 sys.stdout.write("None")
Drgb-lcd.py36 myLcd.write('Hello World')
38 myLcd.write('Hello World')
Deboled.py33 lcd.write("Hello");
35 lcd.write("World!");
/hardware/bsp/intel/peripheral/libmraa/tests/
Dgpio_checks.py68 self.pin.write(1)
76 self.pin.write(0)
84 res = self.pin.write(1)
89 res = self.pin.write(0)

12345678910>>...16