-
Datei
lsusboutput.txt
0x15ba Olimex Ltd. idProduct 0x0002 bcdDevice 1.00 iManufacturer 1 Silicon Labs iProduct 2 OLIMEX MSP430 JTAG TINY iSerial 3 030006B4 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 32 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0x80 (
in „MSP430 programmieren/debuggen unter Linux“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
bauteile_002.txt
2 PIC16C56A/JW DIL Microchip 2 2,00 6 PIC18F242-I/SP DIL Microchip 3 3,00 3 LPC2101F TQFP 3 3,00 9 MSP430F1121A TSSOP TI 9 4,00 5 MSP430F149I LQFP TI 5 9,00 60 29F040C-70 PLCC 60 6,00 1 10 25P10AVG ST 10 3,00 1) Hierbei handelt es sich um Schüttgut, möglicherweise schon programmiert.
in „Verkaufe diverse Bauteile“ · Markt ·
-
Datei
msp_server.h
#ifndef _MSP430SERVER_H_ #define _MSP430SERVER_H_ // #include "typedefs.h" #include "stdint.h" // void configureW5500(const uint8_t *sourceIP, const uint8_t *gatewayIP, const uint8_t *subnetMask); void resetW5500
in „Send response (Action *Var)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
msp_config.h
#include "msp430.h" /* * msp_config.h * * Created on: Apr 26, 2014 * Author: RobG */ #ifndef MSP_CONFIG_H_ #define MSP_CONFIG_H_ #define MISO_PIN BIT1 #define MISO_PORT P3 #define MOSI_PIN BIT0 #define MOSI_PORT
in „Send response (Action *Var)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
fet140_tb04.c
//****************************************************************************** // MSP-FET430P140 Demo - Timer_B Toggle P1.0, overflow ISR, 32kHz ACLK // // Description; Toggle P1.0 using using software and the timer_B overflow ISR. // In this example an ISR will trigger when TB overflows
in „MSP430 TimerB“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
RTC_Sample_03.c
//****************************************************************************** // // MSP430F5418 // ----------------- // /|\ | XIN|- // | | | 32kHz // ---|RST XOUT|- // | | // | P6.1|-->LED // // Built with IAR Embedded Workbench Version: 4.20 //****************************************************************************** #include <msp430x54x.h> extern int SetRTCYEAR(int year); extern int SetRTCMON(int month); extern int SetRTCDAY(int day); extern int SetRTCHOUR(int hour); extern int SetRTCMIN(int min); extern int SetRTCSEC(int sec
in „MSP430 RTC Alarm Interrupt“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
msp430xG46x_usart1_uart_2400.c
//****************************************************************************** // MSP430xG46x Demo - USART1, Ultra-Low Pwr UART 2400 Echo ISR, 32kHz ACLK // // //****************************************************************************** #include <msp430xG46x.h> void main(void) {
in „msp430xG46x_usart1_19200.c "tested"?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
delay.c
// Zeitverzögerung // Takt: XT2; 4 MHz // #include <msp430x14x.h> #include "msp430def.h" #define NOP asm(" nop \n") unsigned int irq_count; // Zählvariable // Interruptroutine #pragma interrupt_handler count_CCRO:TIMERA0_VECTOR void count_CCRO(){ irq_count
in „Problem mit Timer (MSP430F149)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
0217b-DS10-SD-sektor_auslesen-als_antwort_senden.c
29.8.21 //Änderungen: /************************************************************************/ // MSP430F1611 // ----------------- // | XIN|- 32,768kHz // | | | // Taster rot--|RST (58) XOUT|- 32,768kHz //8 MHz X2OUT- | P1.0..P1.7|Daten FKA LMK62 // 8 Mhz X2IN- | | // | P3.0| frei (28) Stecker umbauen
in „512 Byte-Sektor einer SD-Karte mit E32-868T drahtlos übertragen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
fet140_adc12_06.c
//****************************************************************************** // MSP-FET430P140 Demo - ADC12, Repeated Single Channel Conversions // // This example shows how to perform repeated conversions on a single channel // using "repeat-single-channel" mode. AVcc is used for
in „MSP430 - ADC12 -repeated conversations“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
zaehler.c
#include <msp430.h> #include <msp430f2012.h> void io_init(void); void logik(void); volatile uint32_t rest_spuelzeit; volatile uint32_t zeit_nicht_gespuelt; volatile uint8_t timer_flag; uint16_t P2value = 1023; uint32
in „MSP430F2012 usigned long Timertakte Zaehlen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
TIMERTEST_V1.c
von Timer B0 // soll Timer B0 abgeschaltet werden // das soll sich fortlaufend wiederholen #include <MSP430x16x.h> // für MSP430F1610 void STOP_B0 (void); void StartB0 (void); void TimerB0_einstellen(void); void TimerA0_einstellen(void); unsigned char Messwert; unsigned int g; void main(void) { WDTCTL
in „MSP430- TimerA0 soll TimerB0 wiederholt starten“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
SPI_Slave.txt
#include <msp430x20x3.h> #include <msp430.h> void spi_out(void); volatile int test = 0x00; volatile int i=0; //####################################### //################## !!! Nützliche Beispiele !!! //##########
in „MSP430F2013 SPI Slave versendet komisch“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
SPI_Slave.txt
#include <msp430x20x3.h> #include <msp430.h> void spi_out(void); volatile unsigned int empfangen = 0x00; volatile unsigned int senden =0x00; volatile int i=0; //####################################### //#########
in „MSP430F2013 SPI Slave versendet komisch“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
SPI_Slave.txt
#include <msp430x20x3.h> #include <msp430.h> void spi_out(void); volatile unsigned int empfangen = 0x00; volatile unsigned int senden =0x00; volatile int i=0; //####################################### //#########
in „MSP430F2013 SPI Slave versendet komisch“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
bmp085.c
#include "msp430x22x4.h" //#define NUM_BYTES_TX 3 // How many bytes? #define NUM_BYTES_RX 2 // anzahl zu empfangenden bytes fix unsigned char NUM_BYTES_TX; // anzahl zu sendender bytes variiert int RXByteCtr, RPT_Flag
in „msp430f2274 bmp085 i2c ohne interrupt“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
msp-dmx.c
/************************************/ // msp430-dmx512-recv proto // // Patick Schöberl // // // Clock = 8MHz // // Device = MSP430F149 // /************************************/ #include <signal.h> #include <io.h> void init_uart_dmx(); interrupt
in „DMX schrittmotor steuerung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
w5500_spi.c
//MSP430G2553 SPI w5500 functions //-Function--------------------------------------------------------------------- // SPI init for MSP430G2553 void spi_init(void) { BCSCTL1 = CALBC1_1MHZ; DCOCTL = CALDCO_
in „Wiznet W5500 Datenübertragung via Ethernet“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ADC-SPI.txt
#include <msp430x20x3.h> #include <msp430.h> void spi_out(void); void main(void) { WDTCTL = WDTPW + WDTHOLD; // Stop watchdog Timer BCSCTL1 = CALBC1_1MHZ; // Master clk auf 1MHz setzen um Stromsparend zu arbeiten
in „MSP430F2013 ADC einlesen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
I2C.h
//Erstellung einer Headerdatei für die I2C Schnittstelle für den µC MSP430 Launchpad v1.5 #ifndef I2C_H_ #define I2C_H_ #include <msp430.h> //Die Adresse des Slaves hier eingeben #define Slave_Adresse 0x40 void I2C_Init(void); void I2C_Startbit(void); void I2C_Stopbit(void
in „MSP430 I2C Ansteuerung - Veratändnis Probleme“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
AL2G4-F_Schaltplan.PDF
-rR3r -Ial-ext > Funkmelder AL2G4 2\ i r - ESP8K76-01Interface Magnet-Sensrechts K4(3v3) Hal-rr > MSP-RSf]- I GND < < MSP-TS—l TST S2; Magnet-Senslinks HAL-RL > Debug-lnterface S3 T _ Deckelkontakt -Ial-dk > I . J I ~ i PIR-SensornasonicMN31112J 21 M l-pir > X LIC T1 2x1,5V .fR_ —<FM-EN-VSS| _ Sensorik
in „suche nach geeignetem Optokoppler“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Capture_Input.txt
von 75% ################################################################################ #include "msp430g2553.h" // Headerdatei für MSP430 G2553 einbinden //#include "addon_board.h" // Headerdatei für Erweiterungsplatine unsigned int rising_edge, falling_edge, time_impuls; int durchlauf = 1; void main
in „MSP430 Auslesen einer Impulsdauer mit Capture“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
I2C.h
//Erstellung einer Headerdatei für die I2C Schnittstelle für den µC MSP430 Launchpad v1.5 #ifndef I2C_H_ #define I2C_H_ #include <msp430.h> //Die Adresse des Slaves hier eingeben #define Slave_Adresse 0b0100000 void I2C_Init(unsigned char RW); void I2C_NACKbit(void); void
in „MSP430 I2C Ansteuerung - Veratändnis Probleme“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
/* * 20101229 - MSP430FG4618/2013 Experimenter's board and ADXL 345 sensor * * This code connects to an ADXL 345 sensor via i2c and * tries to set the measurement mode by writing the value 0x28 to the register at 0x2d
in „MSP430 und ADXL345 Sensor via i2c - Probleme“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
I2C.h
//Erstellung einer Headerdatei für die I2C Schnittstelle für den µC MSP430 Launchpad v1.5 #ifndef I2C_H_ #define I2C_H_ #include <msp430.h> //Die Adresse des Slaves hier eingeben #define Slave_Adresse 0x40 void I2C_Init(unsigned char RW); void I2C_Startbit(void); void I2C_Stopbit
in „MSP430 I2C Ansteuerung - Veratändnis Probleme“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
MSP430_RFM12_Adapt_V14.pdf
P 1 2 3 4 5 6 7 8 9101 1 1 1 100n J 1 2 3 4 1 2 A A P P GND 14.01.2013 14:38:45 F:\workshop_EAGLE\MSP430_RFM12_Adapt_V14\MSP430_RFM12_Adapt_V14.sch (Sheet: 1/1)
in „Biete Stand alone Leer-Platine für MSP430G (TI) / RFM12B / LCD“ · Markt ·
-
Datei
initialization.c
initialization.c written by S. Grünenwald / reflectionRacing CarRacingTechnologie // Initialisierung Hardware MSP430F149 // ************************************************************************************* #include <msp430x14x.h> #include <stdlib.h> #include <stdio.h> #include <signal.h> void delay(unsigned
in „Bitprobleme mit SPI“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
msp_board_1_main.c
***************************** // Author : Christian Hoefling Date : 04/04/06 // // Target Device : MSP430F2012 // // // Description : Convertion with ADC10, then transmission via SPI interface // // // //********************************************************************************************************************************** #include <msp430x20x2.h> void main(void) { P1DIR |= 0x01; // Set P1.0 to output direction WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer DCOCTL = DCO2 + DCO1 + DCO0; // DCO = 7 sets frequency of digital controled
in „Problem mit MSP430“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
DS10-g0133-PID.c
/* Messstelle 4 = Spannungseingang P6.0 */ //rechts Kanal 4 /* Akku = Spannungseingang P6.1 */ // MSP430F1611 // ----------------- // | XIN|- 32,768kHz // | | | // Taster rot--|RST (58) XOUT|- 32,768kHz //8 MHz X2OUT- | P1.0..P1.7| Daten FKA LMK62 //8 Mhz X2IN- | | // | P3.0| Motorsteuerung A // UTXD0
in „while-Schleife wird "unerlaubt verlassen"“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
DS10-g0075-PID.c
/* Messstelle 4 = Spannungseingang P6.0 */ //rechts Kanal 4 /* Akku = Spannungseingang P6.1 */ // MSP430F1611 // ----------------- // | XIN|- 32,768kHz // | | | // Taster rot--|RST (58) XOUT|- 32,768kHz //8 MHz X2OUT- | P1.0..P1.7| Daten FKA LMK62 //8 Mhz X2IN- | | // | P3.0| Motorsteuerung A // UTXD0
in „Wie 2x interrupt verschachteln, MSP430“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
init.c
// Dimmer Routinen zur initialisierung // Diese Routinen sind bestandteil des MSP430 Dimmers void mcu_init(void) // Init des MSP430 { unsigned int i; WDTCTL = WDTPW + WDTHOLD; // watchdog aus P1DIR = 0x08; // Definieren der E/As P2DIR |= 0xFF; // Set P2 to output direction P3DIR
in „MSP430 F1232 startet nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
TS-iP57b_FKA_5509-LP133.c
********** // *Testschaltung 1611* // *************** // Flüssigkristallanzeige graph. FKA 5509 // MSP430F1611 // ----------------- // | XIN|- 32,768kHz // | | // Taster rot--|RST (58) XOUT|- 32,768kHz // 8 Mhz X2IN- | P2.1|Taster // | P2.0|Taster // 8 MHz X2OUT- | P1.0..P1.7|Daten FKA TS1611 // | |
in „Pollin Display GWMS5509 will nicht laufen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LCD1.txt
#include <msp430.h> #include <stdio.h> #include <stdint.h> void LCD_init(void); void DelayUs(int Us); void LCD_cmd4(unsigned char cmd); void LCD_dat4(unsigned char byte); void LCD_Nibble(unsigned char data); unsigned char i; const unsigned char Msg1[] = "LCD Test"; const unsigned char Msg2[] = "MSP430"; void main() { WDTCTL = WDTPW + WDTHOLD; // Stop Watchdog Timer P1DIR = 0x0C; // D4 und D5 bestimmen P3DIR = 0x80; // RS bestimmen P4DIR = 0x06; // D6 und D7 bestimmen P8DIR = 0x04; // EN bestimmen
in „LCD Initialisierung W162B-N3LW“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LCD1.txt
#include <msp430.h> #include <stdio.h> #include <stdint.h> void LCD_init(void); void DelayUs(int Us); void LCD_cmd4(unsigned char cmd); void LCD_dat4(unsigned char byte); void LCD_Nibble(unsigned char data); unsigned char i; const unsigned char Msg1[] = "LCD Test"; const unsigned char Msg2[] = "MSP430"; void main() { WDTCTL = WDTPW + WDTHOLD; // Stop Watchdog Timer P1DIR = 0x0C; // D4 und D5 bestimmen P3DIR = 0x80; // RS bestimmen P4DIR = 0x06; // D6 und D7 bestimmen P8DIR = 0x04; // EN bestimmen
in „LCD Initialisierung W162B-N3LW“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include <msp430g2553.h> int data1; int data2; int data3; int data4; int TXByteCtr = 1; unsigned char PRxData; int Rx = 1; char WHO_AM_I = 0x00; char itgAddress = 0x5C; //char itgAddress = 0xB8; void init_I2C(void
in „MSP430G2553 / DHT12 Sensoranbindung / Initialsierung anfangs fehlerhaft“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
ElektronikBauteile.pdf
0,032768 0,14 € 0,70 € 108 4 DIL-GLEICHRICHTER = DF04 B40C800DIP 0,10 € 0,40 € 109 3 Texas Instruments MSP430F149IRTDT 6,27 € 18,81 € digikey 110 3 Texas Instruments MSP430FG439IPN 7,99 € 23,97 € digikey 111 2 Texas Instruments MSP430F169IPM 10,78 € 21,56 € digikey 112 3 Sicherungshalter, 5x20mm, max. 6,3A
in „[V] - Elektroniksammlung“ · Markt ·
-
Datei
DS10-g0074-PID.c
/* Messstelle 4 = Spannungseingang P6.0 */ //rechts Kanal 4 /* Akku = Spannungseingang P6.1 */ // MSP430F1611 // ----------------- // | XIN|- 32,768kHz // | | | // Taster rot--|RST (58) XOUT|- 32,768kHz //8 MHz X2OUT- | P1.0..P1.7| Daten FKA LMK62 //8 Mhz X2IN- | | // | P3.0| Motorsteuerung A // UTXD0
in „Wie 2x interrupt verschachteln, MSP430“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Studienarbeit_ausschnitt.pdf
es auch problemlos möglich, das Programm mit weiteren Unterfunktionen zu erweitern. 8.2.2 Funktion „msp_init“ Funktionsbeginn Watchdog - Timer anhalten RC - Oszillator auf 5 MHZ 8 MHz Quarz initialisieren Nein Ja Quarz angeschwungen? Funktionsende Abb. 8.02: Flussdiagramm der Funktion „msp_init“ Die Funktion „msp_init“ ist für die Initialisierung des MSP430F123 zuständig. Sie schaltet zuerst den in diesem Projekt nicht benötigten Watchdogtimer aus, initialisiert anschließend den internen RC – Oszillator auf
in „Lassen-SQ GPS“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Nokia_210804.c
#include <msp430x14x.h> #include <msp430def.h> #include <eigene/port.h> #include <eigene/wait.h> //Definitionen //------------------------------------------------------------------------------ //Watchdog---------
in „LCD 3310 und MSP430“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
RTC_WDT.asm
- Changed WDT interrupt vector sect to a define to support all devices ; - changed to use generic msp430 header file ;****************************************************************************** .cdecls C,LIST,"msp430.h" .ref incrementSeconds .def WDT_1sec_wake .text WDT_1sec_wake mov.w #WDT_ADLY_
in „msp430gcc4 / Eclipse / Sampel code MSP430F499stk2“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcd.c
#define sbi(port, bit) ((port) |= (bit)) #define cbi(port, bit) ((port) &= (~bit)) #include <msp430.h> #include "wait.c" #define RW BIT4 #define RS BIT5 #define E BIT6 #define lcd_enable() sbi(P1OUT, E); cbi(P1OUT, E); /**************************************************************************** // LCD-Funktionen für MSP430-LCD // 4-BitModus: // Datenbit 4-7 an P1.0-3 // P1.4 = R/W (low: write, high: read) // P1.5 = RS (high: Daten, low: Kommando) // P1.6 = E (high/low/high-Impuls für gültige Daten) ****************
in „An bestimmte LCD-Position schreiben und Init-Probleme“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
0167-iar-UART_DS04_senden_V02.c
// MSP430F169 // ----------------- // /|\| XIN|- 32,768kHz // | | | // Taster blau-|RST (58) XOUT|- 32,768kHz // | P1.7|LED Grün // 6 Mhz X2IN- | P1.6|Taster für Entladung wiederholen rechts // | P1.5|Taster
in „MSP430 über UART Daten senden“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
msp430x2xx_hello.c
#include "msp430g2231.h" #include "inttypes.h" #define LED1 BIT0 // red Led #define LED2 BIT6 // green Led #define TXD BIT1 // TXD on P1.1 #define Bitime 104 // 9600 Baud, SMCLK=1MHz (1MHz/9600)=104 uint8_t BitCnt
in „MSP 430 Launchpad TX, printfEasy“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
0167-iar-UART_DS04_V01.c
// MSP430F169 // ----------------- // /|\| XIN|- 32,768kHz // | | | // Taster blau-|RST (58) XOUT|- 32,768kHz // | P1.7|LED Grün // 6 Mhz X2IN- | P1.6|Taster für Entladung wiederholen rechts // | P1.5|Taster
in „MSP430 über UART Daten senden“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
0164-iar-UART_empfangen_V02.c
Testschaltung 1611* // ******************** // graph. Flüssigkristallanzeige FKA LC7981 // Uhr DS32C35 // MSP430F1611 // ----------------- // | XIN|- 32,768kHz // | | // Taster rot--|RST (58) XOUT|- 32,768kHz // P5.7|LED rot // | P5.6|LED Grün // 8 Mhz X2IN- | P2.1|Taster // | P2.0|Taster // 8 MHz X2OUT- |
in „MSP430 über UART Daten senden“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
0167-iar_V03-UART_DS04_16bit.c
// MSP430F169 // ----------------- // /|\| XIN|- 32,768kHz // | | | // Taster blau-|RST (58) XOUT|- 32,768kHz // | P1.7|LED Grün // 6 Mhz X2IN- | P1.6|Taster für Entladung wiederholen rechts // | P1.5|Taster
in „MSP430—über UART 16Bit Daten übertragen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
0167-iar_V03-UART_DS04_16bit.c
// MSP430F169 // ----------------- // /|\| XIN|- 32,768kHz // | | | // Taster blau-|RST (58) XOUT|- 32,768kHz // | P1.7|LED Grün // 6 Mhz X2IN- | P1.6|Taster für Entladung wiederholen rechts // | P1.5|Taster
in „MSP430 über UART Daten senden“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
msp_server.c
#include <msp430.h> #include <stdint.h> #include "msp_server.h" #include "msp_config.h" #include "w5500.h" #include "tags.h" #include "typedefs.h" /////////////////////////////////////////////////////////////// /
in „Send response (Action *Var)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
msp_server_2.c
#include <msp430.h> #include <stdint.h> #include <string.h> #include "msp_server.h" #include "msp_config.h" #include "w5500.h" #include "tags.h" #include "typedefs.h" /////////////////////////////////////////////
in „Send response (Action *Var)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcd.txt
// E an P2.2 // DB0-DB7 an P1.0-P1.7 // //--------------------------------------------- #include <msp430x14x.h> // Prototypen void waitLCD(unsigned int i); void LCDOutc(char str); // output eines Zeichens void LCDOuts(char* str); // output eines Strings void LCDInit(void); void LCDClear(void); void
in „Fehler in LCDInit ( ) ???“ · Mikrocontroller und Digitale Elektronik ·