-
Datei
ltc1257macro.asm
.macro DACOUT ;Ausgabe Registerpaar auf LTC1257 Bit 15 - 4 ;Ruhezustand PORTC,5 = L PORTC,7 = H sbrc @1,7 ;if Bit 7 MSB (Bit 11 DAC) = 1 then sbi PORTC,6 ; LTC1257 Din = H sbrs @1,7 ;else cbi PORTC,6 ; LTC1257 Din = L sbi PORTC,5 ;LTC1257 Clock = H nop cbi PORTC,5 ;LTC1257 Clock = L sbrc @1,6 ;if Bit 6 MSB (Bit 10 DAC) = 1 then sbi PORTC,6 ; LTC1257 Din = H sbrs @1,6 ;else cbi PORTC,6 ; LTC1257 Din = L sbi PORTC,5 ;LTC1257 Clock = H nop cbi PORTC,5 ;LTC1257 Clock
in „LTC1257 - Problem mit Ansteuerung (SPI)“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
LTC1257.pdf
vs Input Code 0.5 0.1 F VCC DIN CLK CONTROL OUTPUT 1 VOUT LTC1257LOAD P GND V DOUT B REF ( O0.0 R 0.1 F L VCC DIN D CLK CONTROL OUTPUT 2 VOUT LTC1257LOAD GND VREF DOUT –0.5 0 512 102415362048 25603072 3584098 TO NEXT DAC1257 TA01 CODE 1257 TA05 1 LTC1257 W W W
in „Elektrometer - Rückkopplung dimensionieren?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
test.c
Clock frequency : 3,686400 MHz #include <90s8515.h> #include <delay.h> //Prototype Declaration void ltc1257_ll_init(void); void ltc1257_ll_write(unsigned int data); void main(void) { unsigned int wert; //PORTB=0x00; DDRB=0xFF; //set all bits of PortB for OUTPUT wert = 0xBB8; //DAC Output Value ltc1257_ll_init(); while (1) { ltc1257_ll_write(wert); delay_ms(2000); }; } /* * Low level initialisation routine for LTC1257. */ void ltc1257_ll_init(void) { /* Initial port/pin state */ PORTB.0 = 0; /* clock pin low -> idle */ PORTB
in „LTC1257 - Problem mit Ansteuerung (SPI)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
) #define LATCHTIMING 0xFF /* fit this to your needs! */ #define LEV_LOW 0 #define LEV_HIGH 1 void ltc1257_ll_init(void); void ltc1257_ll_write(unsigned int data); void main(void) { DDRA=0xFF; //set all bits of PortB for OUTPUT ltc1257_ll_init(); while (1) { ltc1257_ll_write(3000); delay_ms(1000); }; } void ltc1257_ll_init(void) { /* Initial port/pin state */ DACCLK(LEV_LOW); /* clock pin low -> idle */ DACLOAD(LEV_HIGH); /* load pin high -> idle */ } void ltc1257_ll_write(unsigned int data) { volatile unsigned
in „LTC1257 - Problem mit Ansteuerung (SPI)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ltc1257.h
/* * Port, where LTC1257 is connected to: * PORTC/PINC */ #define DACOUT PORTC #define DACIN PINC /* * Port configuration: * * Port pin LTC1257 * -------------------- * PC3 LOAD * PC4 DATA * PC5 CLK * */ #define DACCLK(
in „atmega mit nicht spi anschluss“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
test.c
DACCLK(unsigned int level); void DACDATA(unsigned int level); void DACLOAD(unsigned int level); void ltc1257_ll_init(void); void ltc1257_ll_write(unsigned int data); void main(void) { //PORTA=0x00; DDRB=0xFF; //set all bits of PortB for OUTPUT ltc1257_ll_init(); while (1) { ltc1257_ll_write(3000); delay_ms
in „LTC1257 - Problem mit Ansteuerung (SPI)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
DAC.bas
(byval _p1 As Word , Byval _p2 As Word , Byval _p3 As Word) Local _w As Word , _s As Single Local _ltc1257_cnt As Byte If _p1 <> P1_alt Or _p2 <> P2_alt Or _p3 <> P3_alt Then 'nur neue Daten an die DA-Wandler legen Sreg.7 = 0 : _ltc1257_cnt = Ltc1257_cnt : Sreg.7 = 1 If _ltc1257_cnt = 0 Then 'Beschränkung
in „Start-Störungen bei DA-Converter“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main_sawtooth.c
#include <avr/io.h> #include <avr/signal.h> #include <avr/interrupt.h> #include "ltc1257.h" int sawtooth = 4095; //0 enspricht 2.043V, 4095 entspricht 0V inline void ioinit(void); /*------------Interrupt-Service-Routine------*/ SIGNAL (SIG_OVERFLOW0) { sawtooth = sawtooth-1; ltc1257
-
Datei
neuatmega32dac.c
#include <avr/io.h> #include <avr/signal.h> #include <avr/interrupt.h> #include "ltc1257.h" int sawtooth = 0; //0 enspricht 2.043V, 4095 entspricht 0V inline void ioinit(void); /*------------Interrupt-Service-Routine------* SIGNAL (SIG_OVERFLOW0) { sawtooth = sawtooth-1; ltc1257_ll_write
in „atmega mit nicht spi anschluss“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ltc1257.h
/ #define LATCHTIMING 0xFF /* fit this to your needs! */ /* * Low level initialisation routine for LTC1257. */ extern inline void ltc1257_ll_init(void) { /* Initial port/pin state */ DACPORT & DACCLK = LEV_LOW; /* clock pin low -> idle */ DACPORT & DACLOAD = LEV_HIGH; /* load pin high -> idle */ } /* * Low level write routine for LTC1257. * Awaits data in unsigned integer format, 12 bits left-justified. */ extern inline void ltc1257_ll_write(unsigned int data) { volatile unsigned int bitctr = 0; for(bitctr = 0; bitctr < 0x0C; bitctr
-
Datei
ltc1257.h
your needs! */ #define LEV_LOW 0x00; #define LEV_HIGH 0x01; /* * Low level initialisation routine for LTC1257. */ extern inline void ltc1257_ll_init(void) { /* Initial port/pin state */ DACPORT & DACCLK = LEV_LOW; /* clock pin low -> idle */ DACPORT & DACLOAD = LEV_HIGH; /* load pin high -> idle */ } /* * Low level write routine for LTC1257. * Awaits data in unsigned integer format, 12 bits left-justified. */ extern inline void ltc1257_ll_write(unsigned int data) { volatile unsigned int bitctr = 0; for(bitctr = 0; bitctr < 0x0C; bitctr
-
Datei
ltc1257.h
this to your needs! */ #define LEV_LOW 0 #define LEV_HIGH 1 /* * Low level initialisation routine for LTC1257. */ extern inline void ltc1257_ll_init(void) { /* Initial port/pin state */ DACCLK(LEV_LOW); /* clock pin low -> idle */ DACLOAD(LEV_HIGH); /* load pin high -> idle */ } /* * Low level write routine for LTC1257. * Awaits data in unsigned integer format, 12 bits left-justified. */ extern inline void ltc1257_ll_write(unsigned int data) { volatile unsigned int bitctr = 0; for(bitctr = 0; bitctr < 0x0C; bitctr
-
Datei
ltc1257.h
this to your needs! */ #define LEV_LOW 0 #define LEV_HIGH 1 /* * Low level initialisation routine for LTC1257. */ extern inline void ltc1257_ll_init(void) { /* Initial port/pin state */ DACCLK(LEV_LOW); /* clock pin low -> idle */ DACLOAD(LEV_HIGH); /* load pin high -> idle */ } /* * Low level write routine for LTC1257. * Awaits data in unsigned integer format, 12 bits left-justified. */ extern inline void ltc1257_ll_write(unsigned int data) { volatile unsigned int bitctr = 0; for(bitctr = 0; bitctr < 0x0C; bitctr
-
Datei
main.c
signal.h> #include <avr/interrupt.h> #include "i2cmaster.h" #include "usart_bibliothek.h" #include "ltc1257.h" #define Dev3 0x5e // device address 3 4- Fach Pot 3 (IC30, Sägezahneinstellung) #define F_CPU 4000000 // Frequenz #define USART_BAUD_RATE 9600 // Baud-Rate #define USART_BAUD_SELECT (F_CPU/(USART_BAUD_RATE
in „Interrupt -ADC“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LTC1257.bas
Db7 = Portb.5 , E = Portb.1 , Rs = Portb.0 Config Lcd = 20 * 4 Initlcd Cursor Off Noblink Cls '### LTC1257 ################################################################### A_latch Alias Portd.6 : Config A_latch = Output : Reset A_latch A_clock Alias Portd.4 : Config A_clock = Output : Set A_clock
in „Problem mit LTC1257 (BASCOM)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ltc1257_logical.txt
BIT4 | BIT5 | BIT6 | BIT7 --------------------------------------------------------- H H H H H H H H ltc1257_ll_init() { DAC-Port state: BIT0 | BIT1 | BIT2 | BIT3 | BIT4 | BIT5 | BIT6 | BIT7 --------------------------------------------------------- L H H H H H H H } ltc1257_ll_write(21845) { DAC-Port state
in „LTC1257 - Problem mit Ansteuerung (SPI)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
880eed3fe10373c0a5d4ca8d0892cc67.txt
KTY_SUPPORT is not set # ADS7822_SUPPORT is not set # DAC_SUPPORT is not set # TLC5620_SUPPORT is not set # LTC1257_SUPPORT is not set CONF_LTC1257_NUM_DEVICES=4 # DEBUG_LTC1257_CORE is not set # DEBUG_LTC1257_ECMD is not set # # LCD Displays # # HD44780_SUPPORT is not set # HD44780_BACKLIGHT_INV is not set #
in „Ethersex will nicht so richtig“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
L6506_current_controll.pdf
LOAD REF PD7 PB2 IN4 OUT4 T o _ L 2 9 8 _ In p u ts PB0 PB1 GND VSENSE1 Dout gnd ATMEGA8(DIL28) L6506 LTC1257CN8
in „L6506 choppt nicht wirklich..“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
SED1374_3Sch.pdf
LM358 R6 4k7 GND 1 CLR Q\ 6 CH0 8 VCC CLK 7 4 DOUT GND 5 /WAIT 2 CH0 DIN 5 74HC74N 3 CH1 /CS 1 IC5 LTC1257 GND 2 Atmel-Mikrocontroller AT90S8515 4 6 GND 1 LSP10 CH1 GND DOUT GND 3 mit Epson LCD-Controller SED1374 GND LTC1298CN8 C5 100n IC11A LM358 db1uq @ t-online.de 20.04.2002
in „Grafikcontroller S1D13706“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Ansteuerung_SED1374.asm
for use with "1/4VGA"-Display (320*240 pixel) Samsung UG32-F05 * ;* Data input via Linear Technology LTC1298 12Bit ADC * ;* Data output via Linear Technology LTC1257 12Bit DAC * ;* Voltage regulators for +5V (LM2575T5.0), +33V (LT1172) -24V (79L24) * ;* and +3,3V (LM1086-3.3) from Linear Technology and
in „Strings im Flash“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
YigFilter.asm
**************************************************** ;* Unterprogramm gibt zunächst am D/A-Wandler LTC1257 12 Bit seriell aus ;************************************************************************* ADDA: ldi Cnt,9 ; Zähler für die ersten 9 Datenbits mov Temp,XHi ; ror Temp ; MSB ins Cy mov Temp,XLo
in „Grafik LCD als text Display nutzen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
FFT.asm
;*********************************************************************************************** ;LTC1286 12BIT SPI get_adc: cbi spi_port, ad_select ;chipselect rcall spi_readbyte ;high-byte laden mov temp2H, rtxdata rcall spi_readbyte ;low-byte laden mov temp2L, rtxdata sbi spi_port, ad_select ;chipdeselect lsrw temp2 andi temp2H, 0b00001111 ;datenpaket anpassen ret ;LTC1257 12BIT SPI set_dac: mov rtxdata, temp2H ;high-byte übertragen rcall spi_sendbyte mov rtxdata, temp2L ;low-byte übertragen rcall spi_sendbyte cbi spi_port, da_select ;lade-impuls erzeugen nop nop
-
Datei
a30-7.txt
399 s 47 3 1552 717 R12 811 395 s 22 3 1452 712 CR21 877 431 s DioS 3 1685 701 R23 956 410 s 120 3 1257 587 CR28 1049 490 s DioS 3 1912 587 C33 1125 399 s .0047 3 1784 692 C36 1260 399 s .0068 3 1981 1352 1250 371 w Q45 1320 420 w FET 3 1981 1431 U45 1497 342 w MC34060 3 1496 1091 C42 1427 439 w .056
in „Tektronix TDS744A Netzteil“ · Analoge Elektronik und Schaltungstechnik ·
-
PDF
kicad_8450_dcm_liste_neu_v3.pdf
DAC0808_SOIC 8-bit multiplying DAC DAC7513_DCN Low-Power, Rail-to-Rail Output, 12-Bit Serial Input DAC LTC1257 Single Supply 12-bit DAC with Internal Reference Voltage, SOIC-8 LTC1406CGN ADC 8bit Low Power 20Msps, SSOP-24 LTC1406IGN ADC 8bit Low Power 20Msps, SSOP-24 LTC1446 2-Channel 12-Bit Rail-To-Rail
in „KiCAD Eeschema, Bibliotheksdokumentation *.dcm als PDF-Datei“ · Platinen ·
-
PDF
Hewlett_Packard_Operating_and_Service_Manuals_for_HP361XA_30W_Bench_Series_DC_Power_Supplies.pdf
^'^fi 0ie^0faR»f ± 05fciciiii *''iH^^: < 7 n > h •/N:?.;1/0VOLTAGE -:3*<?*-li*ts^^^?lJS<!:L TffifflLTC^^ii^0JI!;E$ij|ig^l9:^-r^/;toi::^fflb, 1^ m CURRENT o*,;>li$f|-&^^E!ii:LT^fflLTC^-l>lS^ 0ai:']matiE1|!I^I9:^-r5/ca6(cffiffl LS-To C C SET Z O ^ ^ i i ^ VitT :xr ll • \, > i>\>Z'^m. E3610A, -i^':? >'&
in „Gebrauchtes Labornetzteil HP Agilent“ · Mechanik, Gehäuse, Werkzeug ·
-
PDF
AIO486.PDF
DA-Wandler Bei dem DA -Wandler handelt es sich um einen 12Bit-Wandler der Firma Linear Technologie LTC 1257). Die Daten müssen seriell mit demMSB beginnend über das DATA -Bit ausgegeben werden. Mit dem letzten Daten-Bit muß zusätzlich das LOAD -Bit gesetzt werden. Beim nächsten 12Bit-Wert muß als erstesLOAD
in „AIO486 CPU-Board“ · Offtopic ·
-
PDF
AIO486.PDF
DA-Wandler Bei dem DA -Wandler handelt es sich um einen 12Bit-Wandler der Firma Linear Technologie LTC 1257). Die Daten müssen seriell mit demMSB beginnend über das DATA -Bit ausgegeben werden. Mit dem letzten Daten-Bit muß zusätzlich das LOAD -Bit gesetzt werden. Beim nächsten 12Bit-Wert muß als erstesLOAD
in „AIO486 CPU-Board“ · Offtopic ·
-
PDF
file.pdf
Solid Electrolyte Interphase Revealed by Microscopy and Spectroscopy, J. Phys. Chem. C 117 (3) (2013) 1257–1267. [24] S. Malmgren, K. Ciosek, M. Hahlin, T. Gustafsson, M. Gorgoi, H. Rensmo, K. Edström, Comparing anode and cathode electrode/electrolyte interface composition and morphology using soft and hard
in „Pedelec: Akku und Controller verklebt - ist das rechtens ?“ · Fahrzeugelektronik ·
-
PDF
Master-thesis_Wenzel-Maier_final-version.pdf
wide range of semiconductor chips for cell-to-heat balancing (e.g. BQ76952, BQ76PL455A, MAX17852, LTC6804-1). 1.2.2 Cell-to/from-Cell Cell-to/from-cell balancing is an active balancing technique where the balancing energy is not lost. Therefore, the excess energy of an accumulator cell is transferred
in „Platinfuchs IIa: Isolierter, bidirektionaler 45W DC/DC Wandler zum Laden/Entladen eines Liion-Akkus“ · Projekte & Code ·
-
PDF
Lenovo_schematic.pdf
0 4 4 @ 0 FDK_ML1220-TT28 change to 1K SD01310018J 0 0 1 1 @ {53} 737_ACP 737_ACN {53} +1.05VS PC1257 +1.05VS 1 2 1 PR9406 C 10K_0402_5% C 0.1U_0402_25V62 PC1256 1 +5VALW 0.1U_0402_25V6 PR9405 @ PC1258 10K_0402_5% 2 1 @ 1 @ 2 PR368 PR3695,44,52} H_PROCHOT# 2 PU1208 2 2 1 H_PROCHOT# 0.1U_0402_25V6 @
in „Pin Belegung bei dem Chip“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Lenovo_Z50-70_NM-A273_ACLUA_MB_Rev0.3_schematic_.pdf
-40_SOD323-2 @ 0 4 4 @ 0 FDK_ML1220-TT28 change to 1K SD01310018J 1 1 @ 53 737_ACP 737_ACN 53 l PC1257 +1.05VS +1.05VS a C 2 1 2 1 C +5VALW 0.1U_0402_25V6 0.1U_0402_25V6 PR9405 1 iPR9406 2C12581 @ 1 10K_0402_5% t 10K_0402_5% PR368 2 PU1208 @ 2 5,44,52 H_PROCHOT# @ 2 1 H_PROCHOT# PR367 0.1U_0402_25V6
in „Laptop defekt: Kommunikation EC - PCH - CPU“ · Mikrocontroller und Digitale Elektronik ·