-
PDF
RC5.pdf
GND k k C9 C10 C11 P2.3/CA0/TA1 12 T1 WAKEUP 4 4 10n 33p 33p P2.4/CA1/TA2 3 BSN20 7 8 P2.5/ROSC R R MSP430F1121DW 100 R11 GND GND GND GND D GND GNDGND D 1 2 3 4 5 6
in „BSL Synchronization Error“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
regler.txt
#include <msp430G2231.h> // Header file for this device #include <intrinsics.h> // Intrinsic functions #define LED = BIT6 // Output bit for LED void wait (long int pwmpause); void main (void) { long int i, istwert
in „MSP430G2231 mit BUZ 11 PWM Ansteuerung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
PWM_TimerA.c
#include <msp430G2231.h> // Header file for this device #include <intrinsics.h> // Intrinsic functions int AD = 8; volatile int PWM; void main (void) { P1DIR = BIT3; // Setze LED1 als Ausgang WDTCTL = WDTPW | WDTHOLD
in „MSP430G2231 PWM mit Duty Cycle 0 und 1“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
debounce.c
#include <msp430x14x.h> unsigned char zz; void init_clock_xt(void)//8MHz { volatile unsigned int i; BCSCTL1 |= XTS; // ACLK= LFXT1 = HF XTAL do { IFG1 &= ~OFIFG; // Clear OSCFault flag for (i = 0xFF; i > 0; i--);
in „Tastenentprellung mit MSP430“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "msp430f5529.h" // Einbinden der Definitionen #define LED_X 0x01 // LED (rot) an P1.0 #define PRELLZYKLEN 20 /* entsprechend 2, wenn alle 10ms */ #define T_SET 0x02 // Taster an P2.1 extern void INIT_UART1
in „Entprellen Flankenerkennung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
0171c-iar-TS-E32_868T-empfaenger-konfigurieren__Ka0x07_adr0x5555_0xC7____bearbeitet.c
#include <msp430x16x.h> #include "TS_LC7981.h" // FKA #include <string.h> // für Zeichen (Infotext) notwendig #include <stdio.h> // für sprint #include <signal.h> void UART1_senden_einstellen(void); void E32_konfigurieren
in „Probleme mit den Sende- und Empfangsteilen E32-868T“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Code.c
#include <msp430x44x.h> #include <stdio.h> //************************************************ //Globale Variablen //************************************************ unsigned int x=0; unsigned int m=0; unsigned long
in „Probleme mit dem Overflow Interrupt“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
RandomTastMain.c
#include "msp430g2211.h" #define RING1 BIT0 #define RING2 BIT4 #define RING3 BIT6 #define BUTTON BIT3 #define RESETB BIT7 #define TIMER_PWM_MODE 0 #define TIMER_PWM_PERIOD 2000 #define TIMER_PWM_OFFSET 20 #define
in „Interrupt bei MSP430G211“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
source.txt
#include <intrinsics.h> #include <msp430xG46x.h> void initPort(); void initUSCI(); void initInterrupt(); void main(void) { initPort(); initUSCI(); initInterrupt(); __enable_interrupt(); UCA0TXBUF = '0'; while(UCA0STAT & 0x1); UCA0TXBUF
in „USCI beim MSP430, was mach ich falsch?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "msp430xG46x.h" #define PIN0 BIT0 #define PIN1 BIT1 #define PIN2 BIT2 #define PIN3 BIT3 #define PIN4 BIT4 #define PIN5 BIT5 #define PIN6 BIT6 #define PIN7 BIT7 void initUART(); void SendUSART1(char*); #pragma
in „MSP430FG4618 und der UART?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
UART0.c
*******************************************************************/ #include "UART0.h" #include <msp430x14x.h> #include <intrinsics.h> #include <stdio.h> #include "misc.h" /* Constants ******************************************************************/ #define txBufLen 256 #define rxBufLen 256 /* Macros
in „Wer hat SW UART für MSP430?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
RandomTastMain.c
#include "msp430g2211.h" #define RING1 BIT0 #define RING2 BIT4 #define RING3 BIT6 #define RING_DIR P1DIR #define RING_OUT P1OUT #define BUTTON BIT3 #define BUTTON_OUT P1OUT #define BUTTON_DIR P1DIR #define BUTTON_IN
in „Interrupt bei MSP430G211“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
tmp122.c
SPI // //******************************************************************************* #include <msp430x14x.h> #include "help.h" #include "lcd.h" char ausg_str[]="0000"; double received= 0; void main(void) { WDTCTL = WDTPW + WDTHOLD; // Watchdog Timer stoppen P1DIR=0xFF; // Port 1 = Output (6 LEDs)
in „MSP430 TMP122/TMP124“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include <msp430g2553.h> #ifndef TIMER0_A1_VECTOR #define TIMER0_A1_VECTOR TIMERA1_VECTOR #define TIMER0_A0_VECTOR TIMERA0_VECTOR #endif #define TORKONTAKT BIT4 #define SCHLUESSELSCHALTER BIT5 #define ALARM BIT7
in „MSP430: Sinus höherer Frequenz per PWM erzeugen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.cpp
#include <msp430.h> #include <stdint.h> #include <stdio.h> #include <stdbool.h> #define TXLED BIT0 #define RXLED BIT1 #define TXD BIT0 #define RXD BIT1 int main(void) { WDTCTL = WDTPW + WDTHOLD; // Stop watchdog
in „MSP430: Kriege UART nicht zu laufen“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
snaa220a__1_.pdf
Time-of-flight = Fluid Speed of Sound Fluid Fluid Level Transducer TX START STOP RX TDC1000-Q1: TRIGGER MSP430/ Ultrasonic 8MHz CLK C2000 AFE Figure 5. Fluid Level Measurement Using Ultrasonic For more information on how to select or mount ultrasonic transducers to the outside of a tank, see Application Note
in „Ultraschallwandler ansteuern“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
2Usart.c
#include "msp430x14x.h" void wait(unsigned int i); void SendUSART1(unsigned char* str); void SendUSART0(unsigned char* str); void SendUSART1c(unsigned char str); void SendUSART0c(unsigned char str); void main(void
in „MSP 430: Beide USARTs nutzen“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
arm-jtag.pdf
assembled and tested Copyright(c) 2004, OLIMEX Ltd., All rights reserved. Development boards for ARM, AVR, MSP430 and PIC microcontrollhttp://www.olimex.com/dev
in „Platinen mit GPS - Empfänger bei ebay“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
PWM.txt
#include <msp430G2231.h> void main(void) { //Variablen Deklaration long int i, istwert, sollwert, regeldifferenzalt, regeldifferenzneu, integrationssumme, kp, ki, kd, ausgang; WDTCTL = WDTPW | WDTHOLD; // Stopt Watchdogtimer
in „MSP430G2231 PWM mit Duty Cycle 0 und 1“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
teileliste.pdf
als Zugabe 7 27 1 Motortreiber Roboternetz VN2 Dualm 5,00 € NTC fehlt, Details auf Anfrage 6 28 1 MSP430 FR4133 Launchpad 4,00 € nur Prozessorboard, KEIN Program 6 29 1 Netzteil 24V ~, 8VA 1,00 € nur als Zugabe 4 30 31 1 PCF8591P 2,00 € 32 1 Ploytec GM5 USB<>MIDI Interface 5,00 € Details auf Anfrage
in „[V] Aufräumaktion“ · Markt ·
-
PDF
avr-usb-jtag.pdf
tested Copyright(c) 2004, OLIMEX Ltd., All rights reserved. Development boards for ARM, PIC, AVR and MSP430 microcontrollers http://www.olimex.com/dev
in „programmer für avr studio 4.12 gesucht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
test_SPI.c
//Test of SPI Interface #include <msp430x14x.h> // Standard Equations #include <stdlib.h> /* void main(void) { unsigned int i; WDTCTL = WDTPW+WDTHOLD; // Stop watchdog timer P1DIR |= 0x40; BCSCTL1 |= 0x05; //set frequency for DCO Clock
in „MSP430 SPI-Schnittstelle“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
forum.c
#include <msp430x14x.h> #include <stdlib.h> #include <stdio.h> #include <signal.h> #include <initialization.h> #include <max7221.h> #include <muster.h> void init_XT(void) // high frequenz resonators ( 455 kHz - 8MhZ
in „Problem mit Ansteuerung MAX7221“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
2usart_2.c
#include "msp430x14x.h" void wait(unsigned int i); void SendUSART1(unsigned char* str); void SendUSART0(unsigned char* str); void SendUSART1c(unsigned char str); void SendUSART0c(unsigned char str); void IntToString
in „MSP 430: Beide USARTs nutzen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include <msp430xG46x.h> int i,a,b1,b2; void main(void) { WDTCTL = WDTPW +WDTHOLD; P1DIR = 0xFF; // Port1 als Ausgang gesetzt (Interrupt) P10DIR = BIT6 + BIT7; // P10.6 & P10.7 als Ausgang (LED I-ROT & LED-Rot) P6SEL
in „MSP430 - ADC“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Datenspeicher.c
// MSP430F1611 // ----------------- // /|\| XIN|- 32,768kHz // | | | // Taster rot--|RST (58) XOUT|- 32,768kHz // | P2.2|LED Grün // 8 Mhz X2IN- | P2.1|Taster für löschen // | P2.0|Taster für Start //8 MHz
in „MSP430 Interrupt verschachteln“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Datenspeicherkorrigiert.c
// MSP430F1611 // ----------------- // | XIN|- 32,768kHz // Taster rot--|RST (58) XOUT|- 32,768kHz // | P2.2|LED grün //8 Mhz X2IN- | P2.1|Taster für löschen // | P2.0|Taster für Start //8 MHz X2OUT- | P1.0
in „MSP430 Interrupt verschachteln“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LCD_moni.c
// Ansteuerung des LCD-Displays #include <msp430x14x.h> #define STOP_WATCHDOG WDTCTL = WDTPW + WDTHOLD; // Watchdog anhalten int main(void); void init(void); void LCD_clear(void); void LCD_init(void); void wait(long i); long i=0; int main(void)
in „Hilfe mein Display streickt !!“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include<msp430x14x.h> /* Typen mit Vorzeichen */ typedef signed char int8_t; typedef signed int int16_t; typedef signed long int32_t; typedef unsigned char uint8_t; typedef unsigned int uint16_t; typedef unsigned
in „1bit dac am msp430“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
TS_5435_0118-adc12_03.c
// AD-Wandler lesen #include "msp430x54x.h" #include <TS_5435-LC7981.h> // für FK-Anzeige #include <stdio.h> // für sprintf void programmversion(void); long zahl; unsigned int zahla,akku; float g,d,e; char zab[8]; char z1a; int main
in „Bedeutung?: Error: cannot load from …..“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "msp430f5529.h" // Einbinden der Definitionen #define LED_X 0x01 // LED (rot) an P1.0 unsigned int MAX = 5; // oberes Ende beider Arrays unsigned int MIN = 0; // unteres Ende beider Arrays unsigned int Wobbel_Dir
in „LED toggelt nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "msp430f5529.h" // Einbinden der Definitionen #define LED_X 0x01 // LED (rot) an P1.0 unsigned int MAX = 5; // oberes Ende beider Arrays unsigned int MIN = 0; // unteres Ende beider Arrays unsigned int Wobbel_Dir
in „LED toggelt nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include <msp430g2553.h> #include <math.h> #ifndef TIMER0_A1_VECTOR #define TIMER0_A1_VECTOR TIMERA1_VECTOR #define TIMER0_A0_VECTOR TIMERA0_VECTOR #endif //PWM #define PWM_TIME 2000 //timer clock: 12e6/8 = 1,5e6
in „MSP430G2553 PWM flackert beim Verstellen der Pulsweite“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stepper.c
/* * stepper.c * * erstellt von: Hessen Boudache */ #include <msp430.h> #include "stepper.h" /* Bit number of PORT2 where APH pin is connected*/ #define STEPPER_APH (1) /* Bit number of PORT2 where BPH pin is connected*/ #define STEPPER_BPH (4) /* Bit number of PORT2
in „Motor steuern mit DDS Prinzip (direct digital synthesis)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
basic_wifi_application.c
POSSIBILITY OF SUCH DAMAGE. * */ #include <stdint.h> #include <stdio.h> #include <string.h> #include "msp430.h" #include <msp430xG46x.h> #include "hal_board.h" #include "hal_buttons.h" #include "hal_rfspi.h" #include "hal_uart.h" // #include "dispatcher.h" #include "board_spi.h" #include "application_version.h
in „Probleme mit CC3000 auf dem MSP-EXP430FG4618“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
uhr.c
#include <msp430x14x.h> void init_Clock( void ); void init_Timer(void); void main(void); struct tm { int tm_sec; /* 0..59 */ int tm_min; /* 0..59 */ int tm_hour; /* 0..23 */ int tm_mday; /* 1..31 */ int tm_mon; /
in „MSP 430 & Uhrzeit“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
SCHEMA.pdf
VCC_TARGET ST1-D 3 1 DVCC AVCC 64 2 4 ST1-C TDI IC1 2 P6.3/A3 DVSS 63 n J3-C 3 NC 6 ST1-F ST1-E 5 TMS MSP430F149 0 3 P6.4/A4 AVSS 62 1 NC 8 ST1-H ST1-G 7 TCK V 4 P6.5/A5 P6.2/A2 61 1 1 NC 10 ST1-J ST1-I 9 DGND 1 C u 5 P6.6/A6 P6.1/A1 60 C 1 NC 12 ST1-L ST1-K 11 RST_NMI SQ1 6 P6.7/A7 P6.0/A0 59 2.2u 10V
in „Ist die Hardware so richtig? (SCM Review)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include <msp430x14x.h> #include <math.h> #include <inttypes.h> unsigned int i=0; unsigned int j=0; unsigned int RMS_SIG1,RMS_SIG2,RMS_SIG3,Test; unsigned long int MW_SIG1,MW_SIG2,MW_SIG3; unsigned long long int
in „RMS über 8192 Werte auf MSPF149 sehr langsam“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcd16x2.c
------------------------------------------------ // Project: LCD16x2 functions // Used components: MSP430-169STK // Date: 10/28/2007 // Author: Stephan Plaschke //------------------------------------------------------------------------------ #include <main.h> void Delay_ms(unsigned char delay_ms) { switch
in „LCD Code Problem mit MSP430“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
i2c2.c
/* * uuu.c * * Created on: 04.07.2011 * Author: praktikant */ #include "msp430x21x2.h" #define UCB0CTL0_ 0x0068 sfrb(UCB0CTL0,UCB0CTL0_); #define UCB0CTL1_ 0x0069 sfrb(UCB0CTL1,UCB0CTL1_); #define UCB0BR0_ 0x006A sfrb(UCB0BR0,UCB0BR0_); #define UCB0BR1_ 0x006B sfrb(UCB0BR1,
in „I2C bei MSP430F2122“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include <msp430x26x.h> volatile unsigned int i; void transmit(char data) { while (!(IFG2 & UCB0TXIFG)); UCB0TXBUF = data; // Transmit first character while (!(IFG2 & UCB0TXIFG)); } void data(char data) { while (
in „DOGM128 an MSP430“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
flash.c
/* * flash.c * * Created on: 09.11.2013 * Author: wv */ #include <msp430.h> #include "flash.h" void writeWord(int *Flash_ptr, int value) { FCTL3 = FWKEY; // Clear Lock bit FCTL1 = FWKEY + WRT; // Set WRT bit for write operation *Flash_ptr = value; // Write value to flash
in „MSP430 Gleitkommazahl in Flash speichern“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
target_schematic.pdf
3 P3.5 JUMPER2 Vcc Vcc USB_PWR 22pF C28 Q1 P P P P P P P P P P P P P P P P e e c f d J1 g dp D2 1 MSP430F133IPM 2 22pF C27 3 RN4 1N4148 4Meg JUMPER3 +5V +5V +5V +5V IC3 J2 GND GND TXD OSCO L1 1 DTR# OSCI R1 4 5 6 2 RTS# TEST USB_PWR +5V VCC3V Vcc R R R VCCIO AGND 4,7K 10nH JUMPER2 RXD NC R K RI# CBUS0
-
PDF
target_schem.pdf
3 P3.5 JUMPER2 Vcc Vcc USB_PWR 22pF C28 Q1 P P P P P P P P P P P P P P P P e e c f d J1 g dp D2 1 MSP430F133IPM 2 22pF C27 3 RN4 1N4148 4Meg JUMPER3 +5V +5V +5V +5V IC3 J2 GND GND TXD OSCO L1 1 DTR# OSCI R1 4 5 6 2 RTS# TEST USB_PWR +5V VCC3V Vcc R R R VCCIO AGND 4,7K 10nH JUMPER2 RXD NC R K RI# CBUS0
-
Datei
0167-iar_V07-UART_DS04_16bit.c
#include <msp430x16x.h> #include <string.h> // für Zeichen (Infotext) notwendig #include <stdio.h> // für sprint #include <signal.h> void Timer_einstellen(void); void UART_einstellen(void); void werte_feld_fuellen
in „MSP430 über UART Daten senden“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Main_256_Sinwerte.txt
#include <msp430g2553.h> #ifndef TIMER0_A1_VECTOR #define TIMER0_A1_VECTOR TIMERA1_VECTOR #define TIMER0_A0_VECTOR TIMERA0_VECTOR #endif #define TORKONTAKT BIT4 #define SCHLUESSELSCHALTER BIT5 #define ALARM BIT7
in „MSP430: Sinus höherer Frequenz per PWM erzeugen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Main_256_Sinwerte.c
#include <msp430g2553.h> #ifndef TIMER0_A1_VECTOR #define TIMER0_A1_VECTOR TIMERA1_VECTOR #define TIMER0_A0_VECTOR TIMERA0_VECTOR #endif #define TORKONTAKT BIT4 #define SCHLUESSELSCHALTER BIT5 #define ALARM BIT7
in „MSP430: Sinus höherer Frequenz per PWM erzeugen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "msp430f5529.h" // Einbinden der Definitionen #define T_OnOff 0x02 // Taster an P1.1 #define T_SET 0x02 // Taster an P2.1 #define LED_ON 0x80 // LED (grün) an P4.7 #define LED_X_Br 0x10 // LED_X Brücke an
in „MSP430 F5529 Wobbel-Generator“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
tastatur.c
#include <msp430x14x.h> void wait(unsigned int i); // prototypen void LCDOutc(char str); void LCDOuts(char* str); void LCDInit(void); void LCDClear(void); void LCDClock(void); int main(void); int chars=0; // var.
-
Datei
fram.c
#include <msp430x23x.h> #include "fram.h" #define DELAY 2 /* 2 ergibt ca. 200kHz Clockfrequenz */ #define SDA 0x40 #define SCL 0x80 #define SDASET (P1OUT |= SDA) #define SDACLR (P1OUT &= ~SDA) #define SCLSET (P1OUT
in „EEPROM 24C04 anbinden“ · Mikrocontroller und Digitale Elektronik ·