-
Datei
complete-log.txt
TCP: Hash tables configured (established 4096 bind 4096) TCP reno registered UDP hash table entries: 256 (order: 0, 4096 bytes) UDP-Lite hash table entries: 256 (order: 0, 4096 bytes) NET: Registered protocol family 1 RPC: Registered named UNIX socket transport module. RPC: Registered udp transport module
in „Pollin - Receiver-Mainboard mit Twin DVB-[T,C] Tuner, NXP PNX8950EH“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
ds-mb86r01-jade-rev1-4.pdf
Encrypted ROM compound engine DDR2 controller • Supported DDR2SDRAM (DDR2-400) • Connectable capacity: 256 ~ 512M bit × 2 or 256 ~ 512M bit × 1 • I/O width: Selectable from ×16/×32 bit • Max. transfer rate: 166MHz/333Mbps Built-in SRAM • Mounted general purpose SRAM of 32KB × 2 (32 bit bus) DMAC • AHB connection
in „Bild im Bild in der Instumententafel Range Rover“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
dmx-led-module.c
channels #define F_PWM 100L // PWM-Frequenz in Hz #define PWM_STEPS 255 // PWM-Schritte pro Zyklus(1..256) // ab hier nichts ändern, wird alles berechnet //#define T_PWM (F_CPU/(F_PWM*PWM_STEPS)) // Systemtakte pro PWM-Takt #define T_PWM 1 //TEST #if (T_PWM<160) // #error T_PWM zu klein, F_CPU muss vergrösst
in „AVR Studio Bug, falsches Register wird geladen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Binaeruhr.c
> #include <avr/sfr_defs.h> #define Uhr 0b11010000 //8-Bit Adresse des DS1307 #define ROLLOVER( x, max ) x = ++x >= max ? 0 : x //Rollover von Peter Dannegger #define ROLLDOWN( x, max ) x = --x == 0 ? max : x //Da unsigned int muss für 0 einmal wieder inkrementiert werden //Debounce Makro von Peter Dannegger
in „Binäruhr Schaltung + Code in Ordnung?“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
WS2801.pdf
Characteristics (VCC=5V, TA= 25℃, unless otherwise specified.) Parameter Symbol Conditions Min Typ Max Units Power Supply Voltage Range V CC 3.3 -- 5.5 V Output Voltage VOUT IOUT=1uA -0.3 -- 7.0 V Constant Current Output 5 -- 30 mA IoutH Constant Voltage Output -- -- 50 mA Output Current IoutL Output
in „Sammelbestellung Adafruit - Digital Addressable RGB LED w/ PWM waterproof flexi strip (LPD8806)“ · Markt ·
-
PDF
WS2801.pdf
Characteristics (VCC=5V, TA= 25℃, unless otherwise specified.) Parameter Symbol Conditions Min Typ Max Units Power Supply Voltage Range V CC 3.3 -- 5.5 V Output Voltage VOUT IOUT=1uA -0.3 -- 7.0 V Constant Current Output 5 -- 30 mA IoutH Constant Voltage Output -- -- 50 mA Output Current IoutL Output
in „WS2801 mehrere LEDs mit KSQ anschließen“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
DZM.asm
Prescaler-Teiler / 8 .equ Prescaler64 = 0b00000011 ; Timer Start und Prescaler-Teiler / 64 .equ Prescaler256 = 0b00000100 ; Timer Start und Prescaler-Teiler / 256 .equ Prescaler1024 = 0b00000101 ; Timer Start und Prescaler-Teiler / 1024 .equ c_LCD_clear = 0b00000001 ; loesche LCD-Anzeige .equ c_LCD_4bit =
in „Assembler: Problem mit Registerpaar“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Configuration_adv.h
its usage. */ //#define MAX7219_DEBUG #if ENABLED(MAX7219_DEBUG) #define MAX7219_CLK_PIN 64 #define MAX7219_DIN_PIN 57 #define MAX7219_LOAD_PIN 44 //#define MAX7219_GCODE // Add the M7219 G-code to control the LED matrix #define MAX7219_INIT_TEST 2 // Do a test pattern at initialization (Set to 2 for spiral) #define MAX7219_NUMBER_UNITS 1 // Number of Max7219 units in chain. #define MAX7219_ROTATE 0 // Rotate the display clockwise
in „Marlin Firmware mit dem ATMEL STUDIO 7 auf das Arduino Mega 2560 Board flashen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
i2c-tiny85.c
0 ) #define SDA_DDR SBIT( DDRB, 0 ) #define SDA_PIN SBIT( PINB, 0 ) // size must be in range 2 .. 256 #define TX0_SIZE 256 // usable: TX0_SIZE - 1 (1 .. 255) #define uputs(x) uputs_((u8*)(x)) // avoid char warning // Access bits like variables: typedef unsigned char u8; typedef signed char s8; typedef
-
PDF
ADM4850_4851.pdf
low EMI DE B DI D Z Truefail-safereceiverinputs Y 5µA(maximum)supplycurrentinshutdownmode DI D Upto256transceiversonone bus 0 3 Outputshigh-z whendisabled orpoweredoff GND GND 0 −7V to +12 Vbuscommon-moderange Thermalshutdownandshort-circuitprotection Figure1. Pin-compatiblewithMAX308x Specifiedover
in „IC: ADM4850 und IRS2186S“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
usb.c
dwords also 4*4 dwords = 64 Bytes macht in Summe 464 Bytes */ #define USB_RAM 0x40006000 #define EpCtrlMaxLen 64 #define EpCtrlLenId ((1<<15)|(1<<10)) #define EpBulkMaxLen 64 #define EpBulkLenId ((1<<15)|(1<<10)) #define EpIntMaxLen 8 #define EpIntLenId (4<<10) /******* Pufferlängen und Längen-Codes ****
in „STM32 USB Übertragungsproblem mit Code von S.F.“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
divider.asm
have 1Hz, 0.5 duty the divider is the ;; half clock frequency of the uC ;; DIVIDER_min= REMAINDER_MIN+256 ;; DIVIDER_max= 0xFFFF*256+REMAINDER_MIN= 16776960 .equ REMAINDER_MIN = 100 ;; minimum clocks for the remainder procedure ;; all other interrupts have to be shorter than (REMAINDER_MIN - 25) .equ INTCOUNT = (DIVIDER - REMAINDER_MIN) / 256 ;; how many interrupts do we need ? ;; take care that INTCOUNT is between 1 and 0xffff .equ REMAINDER = DIVIDER - INTCOUNT * 256 ;; remainder ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
Datei
divider3.asm
have 1Hz, 0.5 duty the divider is the ;; half clock frequency of the uC ;; DIVIDER_min= REMAINDER_MIN+256 ;; DIVIDER_max= 0xFFFF*256+REMAINDER_MIN= 16776960 .equ REMAINDER_MIN = 100 ;; minimum clocks for the remainder procedure ;; all other interrupts have to be shorter than (REMAINDER_MIN - 25) .equ INTCOUNT = (DIVIDER - REMAINDER_MIN) / 256 ;; how many interrupts do we need ? ;; take care that INTCOUNT is between 1 and 0xffff .equ REMAINDER = DIVIDER - INTCOUNT * 256 ;; remainder ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
PDF
22070a-53890.pdf
temperature. For this example, the worst-case junction temperature is estimated below: T = T + T J JRISE A(MAX) T J 19.1°C + 60.0°C T J 79.1°C 5.3.1.3 Maximum Package Power Dissipation at 60°C Ambient Temperature SOT-223-5 (62°C/W Rθ ): JA PD(MAX) = (125°C – 60°C) / 62°C/W PD(MAX) = 1.048W SOT-23-5 (256°C/Watt Rθ JA ): PD(MAX) = (125°C – 60°C)/ 256°C/W PD(MAX) = 0.254W From this table, you can see the difference in maximum allowable power dissipation between the SOT-223-5 package and the SOT-23-5 package. © 2007 Microchip
in „[V] 50St.LowNoise Microchip LDO MCP1824T 3,3V/300mA SOT223-5 mit Shutdown“ · Markt ·
-
Datei
main.c
(data); MAX7219_LOAD1; } //initialisieren 1 chip void max7219_init1() { MAX7219_LOAD0; MAX7219_writeData(MAX7219_MODE_DECODE, 0x00); MAX7219_writeData(MAX7219_MODE_SCAN_LIMIT, 0x04); MAX7219_writeData(MAX7219_MODE_INTENSITY, 0x0f); MAX7219_writeData(MAX7219_MODE_POWER, ON); MAX7219_writeData(MAX7219_MODE_TEST, 0x00); MAX7219_LOAD1; } ISR(TIMER1_COMPA_vect) { static uint8_t prescaler=(uint8_t)F_TIMER; if( --prescaler== 0 ) { prescaler
in „Led Uhr selber machen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
MAIN.C
RC5TIME * 0.4 + 0.5) #define PULSE_1_2 (uint8_t)(F_CPU / 512 * RC5TIME * 0.8 + 0.5) #define PULSE_MAX (uint8_t)(F_CPU / 512 * RC5TIME * 1.2 + 0.5) uint8_t rc5_bit; // bit value uint8_t rc5_time; // count bit time uint16_t rc5_tmp; // shift bits in uint16_t rc5_data; // store result void putchar( uint8
in „USART UDRE geht nicht“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
MCP4151.pdf
C RW -0.2 W 40 85°C 25°C-40°C -0.75 125°C85°C 125°C RW 20 -0.3 20 -1.25 0 32 64 96 128 160 192 224 256 0 32 64 96 128 160 192 224 256 Wiper Setting (decimal) Wiper Setting (decimal) FIGURE 2-5: 5 kΩ Pot Mode – R W (Ω), FIGURE 2-8: 5 k Ω Rheo Mode – R W (Ω), INL (LSb), DNL (LSb) vs. Wiper Setting and
in „Frage zum MCP4151 SPI Digital Poti?“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
TMC5072_datasheet.pdf
Setting the Encoder to Match Motor Resolution Encoder example settings for motor parameters: USC=256µsteps, 200 fullstep motor Factor = FSC*USC / encoder resolution ENCODER EXAMPLE SETTINGS FOR A 200 FULLSTEP MOTOR WITH 256 MICROSTEPS Encoder resolution Required encoder factor Comment 200 256 360 142.2222
in „TMC5072 SPI Ansteuerung“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
LCD-Controller_NT3881.pdf
Detail F 1 L Seating Plane D y A L1 Detail F Symbol Dimensions in inches Dimensions in mm A 0.130 Max. 3.30 Max. A 1 0.004 Min. 0.10 Min. A 2 0.112±0.005 2.85±0.13 b 0.014 +0.004 0.35 +0.10 -0.002 -0.05 c 0.006 +0.004 0.15 +0.10 -0.002 -0.05 D 0.551±0.005 14.00±0.13 E 0.787±0.005 20.00±0.13 e 0.031±
in „Frage zu GCC Tutorial LCD“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
nt3881.pdf
Detail F 1 L Seating Plane D y A L1 Detail F Symbol Dimensions in inches Dimensions in mm A 0.130 Max. 3.30 Max. A 1 0.004 Min. 0.10 Min. A 2 0.112±0.005 2.85±0.13 b 0.014 +0.004 0.35 +0.10 -0.002 -0.05 c 0.006 +0.004 0.15 +0.10 -0.002 -0.05 D 0.551±0.005 14.00±0.13 E 0.787±0.005 20.00±0.13 e 0.031±
in „LCD mit NT3881D“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
datasheet-Novatec_display_controller.pdf
Detail F 1 L Seating Plane D y A L1 Detail F Symbol Dimensions in inches Dimensions in mm A 0.130 Max. 3.30 Max. A 1 0.004 Min. 0.10 Min. A 2 0.112±0.005 2.85±0.13 b 0.014 +0.004 0.35 +0.10 -0.002 -0.05 c 0.006 +0.004 0.15 +0.10 -0.002 -0.05 D 0.551±0.005 14.00±0.13 E 0.787±0.005 20.00±0.13 e 0.031±
in „mal wieder ein LCD am Atmega8“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Main.c
= (-COS[W2]*SIN[W3])/64; M[3][1] = SIN[W2]*2; M[1][2] = (COS[W1]*SIN[W3])/64 + (((SIN[W1]*SIN[W2])/256)*COS[W3])/32; M[2][2] = (COS[W1]*COS[W3])/64 - (((SIN[W1]*SIN[W2])/256)*SIN[W3])/32; M[3][2] = (-SIN[W1]*COS[W2])/64; M[1][3] = (SIN[W1]*SIN[W3])/64 - (((COS[W1]*SIN[W2])/256)*COS[W3])/32; M[2][3] =
in „Probleme mit Array im Flash“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
telefonadapter.c
40, 42, 43, 45, 47, 48, 50, 52, 54, 55, 57, 59, 61, 62, 64, 66, 68, 69, 71}; #define FREQ(x) ((x)*256.0*65536/F_CPU+0.5) // DDS-Inkremente = Additionswerte auf Phasenwert alle F_CPU/256 PROGMEM const WORD Frequencies[16] = { //NTSC-Trägerfrequenz (3,579545 MHz) durch: FREQ( 697), //5135,6 FREQ( 770)
in „HEX-File passt nicht in Attiny 25“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
hope.c
Schwellwertvergleich (void); unsigned int adc_capture(unsigned char channel); unsigned int adc_voltage_max_value(unsigned char channel2); unsigned char buffer[10]; unsigned int timer=53536;//34286; // Prescaler:256 --> 31250 Schritte bis Overflow, 65.536 - 31.250 volatile unsigned int adc0=0.0,adc1=0.0,adc2
in „Atmega88 region text overflowed by 156 bytes“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LCD-Ansteuerung.txt
---------------------------------------------- ti_start equ d'178' ; Zeitbasis der Schrittzeit: ; (256-ti_start)*128µs = 10,0ms enc_switch equ d'4' ;---------------------------------------------------------------------- ; EEPROM INITIALIZATION ; The 16F887 has 256 bytes of non-volatile EEPROM, ; starting
in „Problem bei LCD-Ansteuerung mit PIC“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
w2000a-screenshot.cpp
return timebase[para[23]+1]; } static int p_chvzero(unsigned char *para, int n) { return para[24+n*2]*256 + para[25+n*2] - 1000; } static int p_chscalef(unsigned char *para, int n) { return para[32+n*2]*256 + para[33+n*2]; } static int p_pretriggeridx(unsigned char *para) { return para[40]*256 + para[41
in „Wittig(welec) DSO W20xxA Open Source Firmware (Teil4)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
w2000a-screenshot.cpp
return timebase[para[23]+1]; } static int p_chvzero(unsigned char *para, int n) { return para[24+n*2]*256 + para[25+n*2] - 1000; } static int p_chscalef(unsigned char *para, int n) { return para[32+n*2]*256 + para[33+n*2]; } static int p_pretriggeridx(unsigned char *para) { return para[40]*256 + para[41
in „Wittig(welec) DSO W20xxA Open Source Firmware (Teil4)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
w2000a-screenshot.cpp
return timebase[para[23]+1]; } static int p_chvzero(unsigned char *para, int n) { return para[24+n*2]*256 + para[25+n*2] - 1000; } static int p_chscalef(unsigned char *para, int n) { return para[32+n*2]*256 + para[33+n*2]; } static int p_pretriggeridx(unsigned char *para) { return para[40]*256 + para[41
in „Wittig(welec) DSO W20xxA Open Source Firmware (Teil4)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Uhr_DCF.bas
------------------------------------------* ' Gesamten Wert Berechnen Für Timer1 Const _irq_teiler_max = Int((_xtal * _irq_abstand /(1000000000)) + 0.5) ' Prescaler Einstellung für Timer1 bestimmen ' Const _irq_vorteiler -> Einstellmöglichkeiten: 1/8/64/256/1024 #if _irq_teiler_max > &H00FF_FFFF Const _irq_vorteiler = 1024 #elseif _irq_teiler_max > &H003F_FFFF Const _irq_vorteiler = 256 #elseif _irq_teiler_max > &H0007_FFFF Const _irq_vorteiler = 64 #elseif _irq_teiler_max > &H0000_FFFF Const _irq_vorteiler = 8 #else Const _irq_vorteiler = 1
-
Datei
Soft-PWM_SPI.c
F_PWM 200L // PWM-Frequenz in Hz #define PWM_PRESCALER 8 // Vorteiler für den Timer #define PWM_STEPS 256 // PWM-Schritte pro Zyklus(1..256) #define PWM_PORT PORTC // Port für PWM #define PWM_DDR DDRC // Datenrichtungsregister für PWM #define PWM_CHANNELS 8 // Anzahl der PWM-Kanäle // ab hier nichts ändern
in „Problem mit SPI gesteuerter Soft-PWM“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LED_Kerze.c
F_PWM 50L // PWM-Frequenz in Hz #define PWM_PRESCALER 8 // Vorteiler für den Timer #define PWM_STEPS 256 // PWM-Schritte pro Zyklus(1..256) #define PWM_PORT PORTD // Port für PWM #define PWM_DDR DDRD // Datenrichtungsregister für PWM #define PWM_CHANNELS 8 // Anzahl der PWM-Kanäle // ab hier nichts ändern
in „Aussetzer bei einfacher Soft-PWM Anwendung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
SW_PWM_MC.c
F_PWM 100L // PWM-Frequenz in Hz #define PWM_PRESCALER 8 // Vorteiler für den Timer #define PWM_STEPS 256 // PWM-Schritte pro Zyklus(1..256) #define PWM_PORT PORTA // Port für PWM #define PWM_DDR DDRA // Datenrichtungsregister für PWM #define PWM_CHANNELS 5 // Anzahl der PWM-Kanäle // ab hier nichts ändern
in „Soft-PWM auf Attiny461“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
datasheet.pdf
-Bit CMOS STATIC RAM WITH I/O PORTS AND TIMER GENERAL DESCRIPTION TheMSM81C55-5hasa2k-bitstaticRAM(256bytes)withparallelI/Oportsandatimer. Ituses silicongateCMOStechnologyandconsumesastandbycurrentof100microampere,maximum, while the chip is not selected. Featureing a maximum access time of 400 ns, the
in „OKI M81C55 benutzen.“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ADCversuch1.c
atomic.h> #include "ADC_Division_Results.h" #define numberOfMags 6 #define freqConversionConst 8 // Max Frequency divided by Max resolution of 256(8bit) => 2048 / 256 = 8 #define timerFreq 500 // Timer Frequency at 500 Hz #define atomic(prozess) ATOMIC_BLOCK(ATOMIC_FORCEON){prozess} // set actualizing
in „alternative für for-schleife zeitmangel“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
datasheet.pdf
Positions ITF R (kΩ) VDD 1 ADR440/ AD5251 2.00 64.00 I C 1, 10, 50, 100 5.5 ADR441/ ADR443/ AD5207 2.00 256.00 SPI 10, 50, 100 5.5 ADR444/ AD5242 2.00 256.00 I C 10, 100, 1M 5.5 ADR445 V OUT 6 AD5262 2.00 256.00 SPI 20, 50, 200 15 OP90 2N3904 AD5282 2.00 256.00 I C 20, 50, 100 15 GND 2 AD5252 2.00 256.00 I C 1, 10, 50, 100 5.5 4 AD5232 2.00 256.00 SPI 10, 50, 100 5.5 AD5235 2.00 1024.00 SPI 25, 250 5.5 4 ADN2850 2.00 1024.00 SPI 25, 250 5.5 2 –VS 0 1Can also use a negative supply. Figure40.FloatingCurrentSource Adding a negative supply to
in „Datenblatt richtig lesen“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
Rep600_fail_blinktgruen.txt
each CPU, irq 21 [ 0.298424] devtmpfs: initialized [ 0.304809] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.314839] futex hash table entries: 256 (order: -1, 3072 bytes) [ 0.321877] NET: Registered protocol family 16 [ 0.327240] cpuidle: using governor
in „AVM Fritz Repeater 600 - fehlgeschlagenes Firmware Update?!“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
AN1152_Achieving_Higher_ADC_Resolution.pdf
0.707, then SNR Q is given by Equation 3. EQUATION 3: SNR = 6.02N + 4.77 – 3 = 6.02N + 1.77[dB] Q–MAX From Equation 3, it is clear that the improvement in the SNR of the ADC is 6.02 dB per bit. The higher the num- ber of bits associated with the ADC, the higher the SNR Q. For example, the SNR Q MAX
in „Berechnung zur Auflösung ADC - wie richtig?“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
datasheet.pdf
read mode : 50MHz (15pF + TTL Load), which is equivalent to 100MHz -Fastprogramtime:1.4ms(typ.)and5ms(max.)/page(256-byteperpage) - Byte program time: 9us (typical) -Continuouslyprogrammode(automaticallyincreaseaddressunderwordprogrammode) - Fast erase time: 60ms(typ.) /sector (4K-byte per sector) ; 0.7s
in „MX25L160(5AM2C) neu beschreiben? Gibt es eine DIY Lösung?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
20110325_log.txt
2006 22:24:20 Can't load netui.dll!USBD: Could not load driver for attached device [usbmsc.c:GetBotMaxBlockSize] Using MaxBlockSize 0x10000 (default 0x2000) USBMSC: Compiled Sep 4 2006 22:23:15 USBMSC: Modified, using block size = 0x10000 LcdInit ERROR: LCD not busy Storage devices: \USBDisk Key = mode
in „Pollin - Receiver-Mainboard mit Twin DVB-[T,C] Tuner, NXP PNX8950EH“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
TCS3414_Datasheet_EN_v1.pdf
and 2) PARAMETER TEST Red Channel Green Channel Blue Channel Clear Channel UNIT CONDITIONS MIN TYP MAX MIN TYP MAX MIN TYP MAX MIN TYP MAX Irradiance See Note 3, 0% 15% 15% 50% 65% 90% 59.0 65.6 72.5 R (CSponsivity λp= 524 nm, 0% 15% 60% 90% 0% 35% 71.2 76.9 82.7 (cμW/ts/ e package) See Note 4 cm ) See
in „Messgerät um LED Eigenschaften zu ermitteln“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
read_me.txt
larger devices in some Altera device families: Family: Minimum Available Minimum Physical Memory: RAM: MAX 7000 48 Mbytes 16 Mbytes MAX 9000 64 Mbytes 32 Mbytes FLEX 6000 64 Mbytes 32 Mbytes FLEX 8000 64 Mbytes 32 Mbytes FLEX 10K 256 Mbytes 128 Mbytes 2. A full MAX+PLUS II installation requires approximately
-
PDF
Soundausgabe_datasheet.pdf
........................................................26 1.PRODUCT FEATURES ◎Support 1GB SD card max. or SPI flash 64MB max. ◎Support 4 Bit ADCPM format files. ◎Sampling rate from 6kHZ to 36KHZ for AD4 voice format. ◎Sampling rate from 6KHz~16KHz for WAV voice format ◎16 Bit DAC / PWM audio output.
in „I2C-Adresse des WTV020-SD“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LineIntoLineOutAndDACsDDHwithTermWithScope1.ino
scopeDownSampleCounter=0 ; scopeXpos=0 ; scopeLastY=0 ; scopeTriggered=0 ; } float scopeScale(float xMin, float xMax, float x, float yMin, float yMax){ if(x<xMin){ x=xMin ; } if(x>xMax){ x=xMax ; } float y=yMin+(yMax-yMin)*(x-xMin)/(xMax-xMin) ; return y ; } void scopePutVal(float y){ if ( (y<-0.9) & !scopeTriggered
in „Empfänger nach DD4WH mit Fast Convolution“ · Digitale Signalverarbeitung / DSP / Machine Learning ·
-
PDF
41540.pdf
........................................................26 1.PRODUCT FEATURES ◎Support 1GB SD card max. or SPI flash 64MB max. ◎Support 4 Bit ADCPM format files. ◎Sampling rate from 6kHZ to 36KHZ for AD4 voice format. ◎Sampling rate from 6KHz~16KHz for WAV voice format ◎16 Bit DAC / PWM audio output.
in „WTV-020 Soudmodul Code für C“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
pcm1796.pdf
Continued) all specificationA at T = 2CC1 = VCC2L = VCC 2R = 5 V,DD = 3.3 VS f = 44.1 kHz, system clock S 256 f , and 24-bit data unless otherwise noted PCM1796DB PARAMETER TEST CONDITIONS UNIT MIN TYP MAX DIGITAL INPUT/OUTPUT Logic family TTL compatible V 2 IH Input logic level VDC VIL 0.8 IH Input logic current
in „Audio Signal verdoppeln“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
PWM21.cpp
const int NUM_CHIPS = 3;//How many different oscillators const long MIN_FREQUENCY1 = 0; const long MAX_FREQUENCY1 = 999999; const long MIN_FREQUENCY2 = 999999; const long MAX_FREQUENCY2 = 0; const long MIN_FREQUENCY3 = 0; const long MAX_FREQUENCY3 = 100000000; const char MIN_DUTYCYCLE = 0; const char
in „PWM mit Display und Taser“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Uponor_Product_info_Smatrix_Move_PRO_Modbus_RTU_EN_1088472_12_2016.pdf
1.6 Cooling curve > offset 1354 Read/Write Analogue 32 bit, Signed Integer. Range: -8 – +8 Heating - Max supply temp. 400 Read/Write Analogue 32 bit, Signed Integer. Range: 5 – 70 Heating - Min supply temp. 398 Read/Write Analogue 32 bit, Signed Integer. Range: 5 – 35 Cooling - Max supply temp. 595 Read
in „Modbus Sniffer mit Linux“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
modellauto_.txt
Tempowert sub temp,sw ;extrahieren menu2b: subi temp,(sprz+1) ;Mittenspreizung berücksichtigen mov max,temp ;Wert zuweisen ldi temp,1 ;Adresse 1 out eear,temp ;in EEPROM-Adresse, out eedr,max ;Maximal-Tempowert in EEPROM-Datenregister, cli sbi eecr,eemwe ;Schreibschutz aufheben sbi eecr,eewe ;EEPROM
in „ATTiny 15L Internen Takt einstellen“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
16f88.pdf
Flash P.Memory (Kwords) 8 4 4 Self-Write Flash Yes Yes Yes RAM (Bytes) 1024 384 368 EEPROM (Bytes) 256 256 256 I/O Pins 16 16 16 Max CPU Speed 32 MHz (8 MIPS) 32 MHz (8 MIPS) 20 MHz (5 MIPS) Internal OSC 32 MHz, 32 kHz 32 MHz, 32 kHz 8MHz CodeGuard Security None None None System Mgmt Features BOR, LVD
-
PDF
pcm1801_datasheet.pdf
= 3.2 mA 0.5 fS Sampling frequency 4 44.1 48 kHz 256 fS 1.024 11.2896 12.288 System clock frequency 384 fS 1.536 16.9344 18.432 MHz 512 fS 2.048 22.5792 24.576 DC ACCURACY Gain mismatch, channel-to-channel ±1 ±2.5 % of FSR Gain error ±2 ±5 % of FSR Gain
in „Analogspannung ADC“ · Mikrocontroller und Digitale Elektronik ·