-
Datei
lcd_ord_1.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. zur
in „LCD Display“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Code.txt
#include <msp430x12x.h> #define BLANK 0x01 #define XLAT 0x02 #define DCPRG 0x04 #define SCLK 0x08 #define GSCLK 0x10 #define SIN 0x20 #define SOUT 0x40 #define VCPRG 0x80 #define XERR 0x01 //int Dot[] = {0x3F, 0x1F
in „Msp430F169 mit TLC5940 SPI problem“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
motor_strom.c
// // //****************************************************************************** #include <msp430x14x.h> #include "help.h" #include "lcd.h" double strom= 0.0; unsigned char ausg_str[]="0000"; int motor_on= 0; int loop= 0; int main(void) { WDTCTL = WDTPW + WDTHOLD; // Watchdog Timer Stoppen P1DIR
in „MSP430 Strom messen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
EKG-Quelltext-2.TXT
/* Messung eines "EKG" und Ausgabe auf Grafik-FKA + Speichern auf SD*/ // // MSP430F168 // ----------------- // | XIN|- 32,768kHz // | | // Taster rot--|RST (58) XOUT|- 32,768kHz // | P2.0|Programm Taster 1 // 8 Mhz X2IN- | P2.1|Programm Taster 2 // P2.2|RxD BSL // | P2.4|Programm
in „grafische Flüssigkristallanzeige schnell löschen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcd.c
#include <msp430.h> #include "msp_util.h" #include "lcd.h" /** * Connections: * * RS - P4.0 * R/W - P4.1 * E - P4.2 * DB4 - P4.3 * DB5 - P4.4 * DB6 - P4.5 * DB7 - P4.6 */ // *** BITS *** // * P4 * #define LCD_RS BIT0
in „MSP430 TIMER-A Problem mit Interrupt“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include <msp430.h> int c, start, ready; unsigned long int a, b; unsigned int t, dp; void delay(unsigned int); // display void set_7segment(int nr, int dp); const int seg7[] = {0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07
in „MSP430 Reaktionszeitmesser“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
firmware.txt
firmware.elf: file format elf32-msp430 Disassembly of section .text: 0000c000 <__watchdog_support>: c000: 55 42 20 01 mov.b &0x0120,r5 c004: 35 d0 08 5a bis #23048, r5 ;#0x5a08 c008: 82 45 00 02 mov r5, &0x0200 0000c00c <__init_stack>:
in „Right-shift bei msp430“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
i2c-ps.c
*************************** ** simple I2C-basic funtions, to read and write ** ** @ I2C bus. the msp430 (i use an mspf149) is ** ** as master device. it generates an clock (SCL) ** ** @ P6.2 and data (SDA) @ P6.3. ** *************************************************** ** till now, i couldn`t test it,
in „msp mit I²C“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
PIN LCD // ***************************************************************************** #include <msp430x14x.h> #include <math.h> void init_XT(void) // high frequenz resonators ( 455 kHz - 8MhZ ) { unsigned int i; WDTCTL = WDTPW + WDTHOLD; // Stop WDT BCSCTL1 |= XTS+DIVA1+DIVA0; // ACLK = LFXT1 / 8 =
in „MSP430 Probleme bei Download“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcd.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. zur
in „Problem mit 4 Zeilen LCD“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcd.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. zur
in „Problem mit 4 Zeilen LCD“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
i2c.c
Texas Instruments Inc. December 2010 * Modified by: Alan Barr 2011 * Compiler: mspgcc */ #include <msp430g2553.h> #include <legacymsp430.h> #include "i2c.h" static char i2cPolling = 0; //Polling i2c static int i2cRXByteCtr = 0; static const char * pI2cTxData; // Pointer to TX data static volatile char
in „Hilfe beim Auslesen eines Sensors“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
i2c.c
Texas Instruments Inc. December 2010 * Modified by: Alan Barr 2011 * Compiler: mspgcc */ #include <msp430g2553.h> #include <legacymsp430.h> #include "i2c.h" static char i2cPolling = 0; //Polling i2c static int i2cRXByteCtr = 0; static const char * pI2cTxData; // Pointer to TX data static volatile char
in „I2C timing problem“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
// ___________ Definitionen ______________________________________ #include "msp430f5529.h" // Einbinden der Definitionen // __________ Prototypen der verwenndeten Funktionen _________________ void TimerB0 (void); void TimerA0 (void); // __________ Prototypen die in anderen Files
in „MSP430 F5529 Wobbel-Generator“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Game2Elektor_080558.c
displayed --------------------------------------------------------------------------*/ #include "msp430x20x2.h" int c, start, ready; unsigned long int a, b; unsigned int t, dp; void delay(unsigned int); // display void set_7segment(int nr, int dp); const int seg7[] = {0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d
in „MSP430/27222: Reaktionszeitmesser (C)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include <msp430x44x.h> //Einbinden der Header-Datei //#include "Initialisierung.h" //Persoenliche Header Datei void LCD_CLEAR(void); //Prototype der LCD_Clear Subroutine void conv_d2bcd (unsigned long int x, int *
in „MSP430 Timer Uhr sekundentakt“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Main.c.txt
#include "I2C.h" #include "msp430x21x2.h" unsigned char data[2]; volatile unsigned int i; /////////////////////////////////////////////////////////////////////////////////////////////////// //Brief Initialisierung USCI B0 als I²C Bus
in „Mit MSP430F2132 den Hardware I2c Bus aufbauen um Temperatursensor anzusteuern“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
adis16250.c
************************************************************************************** #include <msp430x14x.h> #include <initialization.h> char CS_low = 0; // Variable für Chip Select low char CS_high = 0xFF; // Variable für Chip Select high unsigned int dummy = 0; // Hilfsvariable float ADIS16250_Read
in „Drift bei Gyro ADIS16250“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
w5500_v1_code.txt
#include <msp430g2553.h> #include <stdint.h> //Define Base Registers #define W5500_COMMON_BASE 0x0000 #define W5500_SOCKET0_BASE 0x4000 #define W5500_TXBUF_BASE 0x8000 //W5500 Commands #define W5500_WRITE 0x04 #define
in „Wiznet W5500 Datenübertragung via Ethernet“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
0170c-iar-TS-E32_868T-empfangsbetrieb___bearbeitet.c
#include <msp430x16x.h> #include "TS_LC7981.h" // Flüssigkristallanzeige (FKA) #include <string.h> // für Zeichen (Infotext) notwendig #include <stdio.h> // für sprint #include <signal.h> unsigned int t,k; void UART1
in „Probleme mit den Sende- und Empfangsteilen E32-868T“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
extflash.c
#include <msp430.h> #include "definitions.h" #include "spi.h" #include "tools.h" #include "extflash.h" /* Made for Adesto AT25SF081 */ #define WRITEENABLE 0x06 #define WRITEDISABLE 0x04 #define READSTATUS 0x05 #define
in „MICRON MT25TL01 SPI FLASH“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
teileliste.txt
Motortreiber Roboternetz VN2 Dualmotor | 5,00 € | NTC fehlt, Details auf Anfrage | 6 | | 28 | 1 | MSP430 FR4133 Launchpad | 4,00 € | nur Prozessorboard, KEIN Programmer | 6 | | 29 | 1 | Netzteil 24V ~, 8VA | 1,00 € | nur als Zugabe | 4 | | 30 | 1 | Paar Ultraschallsensoren Wasserdicht | 2,00 € | | 7 |
in „[V] Aufräumaktion“ · Markt ·
-
Datei
uhr.c
#include <msp430x14x.h> void init_Clock( void ); void init_Timer(void); void wait(unsigned int i); void LCDInit(void); void LCDClear(void); void LCDClock(void); void LCDOuts(char* str); void LCDOutc(char str); void
in „MSP 430 & Uhrzeit“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Sinussweep_ueberarbeitet.txt
#include <msp430x26x.h> #include <iostream.h> unsigned long int w_repeat = 0; //Aktuelle Halbwelle unsigned long int w_repeat_stop = 0; //Maximale Anzahl von Halbwellen int w_SetCCR = 0; //Variable zum Setzen der Capture
in „Sinuserzeugung mit DAC: Probleme Interrupterzeugung für DAC durch TimerB Compareregister“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include <msp430x14x.h> // initalisieren von Variablen (global) unsigned int state_count, state_count_old; char i, state_new, state_old, x_direction, x_direction_old, check, transmit_result, transmit, wait; void main
in „MSP430 läuft nicht !“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
I2C_ADXL345_26_04_12.c
sondern ab i=1-5 und dann 0 abgespeichert!!! 1.byte lower byte(x0) 2.byte higher(x1) */ #include <msp430.h> #include <stdint.h> uint8_t address = 0x53; void i2c_write(uint8_t address, uint8_t* data, uint8_t len); unsigned char I2C_ReadByte(uint8_t address, unsigned char registerAddr, uint8_t* data,int
in „MSP430G2553, I2C read falsche Reihenfolge bei der Ausgabe“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
catalog.pdf
12.08.2022 MPN: MSP430G2121IPW14R [ID]: 000156 [Price]: 0.61 USD [QTY]: 2 [Category]: Microcontrollers [Desc]: 16 MHz MCU with 1KB Flash, 128B SRAM, SPI/I2C, timer 14-TSSOP -40 to 85 MPN: ATTINY10-TSHR [ID]: 000157 [Price
-
PDF
catalog.pdf
Microcontrollers [Desc]: Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB MPN: MSP430G2231IRSA16R [ID]: 000155 [Price]: 0.8 USD [QTY]: 2 [Category]: Microcontrollers [Desc]: 16 MHz MCU with 2KB Flash, 128B SRAM, 10-bit ADC, SPI/I2C, timer 16-QFN -40 to 85 MPN: MSP430G2121IPW14R [ID]
-
PDF
catalog-3.pdf
Microcontrollers [Desc]: Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB MPN: MSP430G2231IRSA16R [ID]: 000155 [Price]: 1.1024 USD [QTY]: 2 [Category]: Microcontrollers [Desc]: 16 MHz MCU with 2KB Flash, 128B SRAM, 10-bit ADC, SPI/I2C, timer 16-QFN -40 to 85 MPN: MSP430G2121IPW14R [
-
Datei
fet140_1.c
was // //****************************************************************************** #include <msp430x14x.h> #define A0 0x01; #define RW 0x02; #define E1 0x04; #define E2 0x08; //;------------------------------------------------------------------------------ //; Konstanten für Display Komandos //;-
in „Frage:Gibts unterschiede beim flashen??“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Sinussweep_ueberarbeitet.txt
#include <msp430x26x.h> #include <iostream.h> unsigned long int w_repeat = 0; //Aktuelle Halbwelle unsigned long int w_repeat_stop = 0; //Maximale Anzahl von Halbwellen int w_SetCCR = 0; //Variable zum Setzen der Capture
in „Sinuserzeugung mit DAC: Probleme Interrupterzeugung für DAC durch TimerB Compareregister“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Sinussweep_ueberarbeitet.txt
#include <msp430x26x.h> #include <iostream.h> unsigned long int w_repeat = 0; //Aktuelle Halbwelle unsigned long int w_repeat_stop = 0; //Maximale Anzahl von Halbwellen int w_SetCCR = 0; //Variable zum Setzen der Capture
in „Sinuserzeugung mit DAC: Probleme Interrupterzeugung für DAC durch TimerB Compareregister“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ti_test_c.c
settings. /******************************************************************************/ #include "msp430x14x.h" #define LED_TabLength 512 unsigned int pwmtable_16[512]={1,1,1,1,1,1,1,1,1,2,2,2,2,2, 2,2,2,2,2,2,2,3,3,3,3,3,3,3, 4,4,4,4,4,4,5,5,5,5,5,6,6,6, 6,7,7,7,8,8,8,9,9,10,10,10,11,11, 12,12,13,13,14,15,15,16,17,17,18,19,20,21
in „MSP430F149 Erratasheet Angaben“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
errors.txt
1179122771312 5604 Error launching external scanner info generator (gcc -E -P -v -dD D:/reflection/MSP430_Eclipse_Projects/.metadata/.plugins/org.eclipse.cdt.make.core/specs.c) G-Sens Unknown 1179123278718 5638 `CKPL' undeclared (first use in this function) G-Sens sca3000.c line 76 1179122771328 5617 `
in „MSP430 Eclipse und mspgcc“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Temperaturausgabe5.txt
#include <msp430x16x.h> //Senden von Adresse 00 um die sicher die Temperaturdaten auslesen zu können void fSende00() { U0CTL |= MST; // Master mode I2CTCTL |= I2CSTT+I2CSTP+I2CTRX; // Initiate transfer while ((I2CIFG
in „LM75 mit MSP430F1611“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ad_lcd.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); void IntToString(unsigned char* str, int
in „Spannung messen“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
main.c
#include <msp430x26x.h> #define INPUT 0 #define OUTPUT 0xff #define BUF_SIZE 25 #define _WP BIT0 #define _WE BIT1 #define ALE BIT2 #define CLE BIT3 #define _CE BIT4 #define _RE BIT5 #define R_B BIT6 //variables unsigned
in „Hynix NAND-Flash an MSP430“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include <msp430x26x.h> #define INPUT 0 #define OUTPUT 0xff #define BUF_SIZE 25 //Pin Setup #define _WP BIT0 #define _WE BIT1 #define ALE BIT2 #define CLE BIT3 #define _CE BIT4 #define _RE BIT5 #define R_B BIT6 //variables
in „Hynix NAND-Flash an MSP430“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
waage.c
#include <msp430.h> #include "stdint.h" #define BUTTON_T BIT6 #define BUTTON_Z BIT7 #define SCHALTER BIT3 #define LED_GREEN BIT5 #define LED_YELLOW BIT6 #define LED_RED BIT7 #define TURNON 0x0252 #define TURNOFF 0x01DB
in „Programm zu groß für 1k Flash“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include <msp430.h> #include "stdint.h" #define BUTTON_T BIT6 #define BUTTON_Z BIT7 #define SCHALTER BIT3 #define LED_GREEN BIT5 #define LED_YELLOW BIT6 #define LED_RED BIT7 #define TURNON 0x0252 #define TURNOFF 0x01DB
in „Programm zu groß für 1k Flash“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
zahl_an_LCD.txt
// Ansteuerung des LCD-Displays #include <msp430x14x.h> #include <stdio.h> //#include <string.h> #define STOP_WATCHDOG WDTCTL = WDTPW + WDTHOLD; // Watchdog anhalten //#define SetE P5OUT, BIT3; #define EN BIT2 #define RW BIT1 #define RS BIT0 #define
in „Int-Wert-Ausgabe auf Display ??“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "msp430f5529.h" // Einbinden der Definitionen #define LED_X 0x01 // LED (rot) an P1.0 #define T_SET 0x02 // __________ Prototypen die in anderen Files liegen _________________ extern void INIT_UART1(void);
in „kein definiertes Verhalten in der ISR“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
EKG7_ADS1293-Kanal_1-V19-b.h
// EKG-7 // E-Papieranzeige E2271 // MSP430F1611 // ----------------- // | XIN|- 32,768kHz // | | // Taster rot--|RST (58) XOUT|- 32,768kHz // P5.7| // | P5.6| // 8 Mhz X2IN- | P2.1| // | P2.0| // 8 MHz X2OUT- | P1.0..P1.7| FKA entfällt // |
in „Wie muss man Pervasive Displays beschreiben?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Modulkram.c
//****************************************************************************** #include <msp430x16x.h> #include "TS_LC7981.h" #include <string.h> // für Zeichen (Infotext) notwendig #include <stdio.h> // für sprint #include <signal.h> #define TIMEOUT 100 // für Datenempfang unsigned int t,k;
in „Sende/Empfangsvorgang mittels nur 1St. µC“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
send_an_0202_G1_antwort_empf_neue_Vers.c
//****************************************************************************** #include <msp430x16x.h> #include "TS_LC7981.h" #include <string.h> // für Zeichen (Infotext) notwendig #include <stdio.h> // für sprint #include <signal.h> #define TIMEOUT 100 // für Datenempfang unsigned int t,k;
in „Sende/Empfangsvorgang mittels nur 1St. µC“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
0200_main.c
/******************************************************************************/ #include <msp430x16x.h> #include "0200_lc7981.c" #include <string.h> // für Zeichen (Infotext) notwendig #include <stdio.h> // für sprint #include <signal.h> #define F_CPU 800000 // Hz, DCO nach Reset #define TIMEOUT
in „Sende/Empfangsvorgang mittels nur 1St. µC“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
TPS3820-50DBVRQ1G4.pdf
Free-Air Temperature 3.3 V ° 1.001 ( VI V DD 100 nF VDD )A 1 (I − RESET RESET g 0.999 l TPS3823-33-Q1 MSP430C325 V 0.998 h MR WDI I/O r T 0.997 p GND GND I 0.996 i a o 0.995 N −40 −15 10 35 60 85 1 TA− Free-Air Temperature − °C An IMPORTANT NOTICE at the end of this data sheet addresses availability, warranty
in „Firmware aus MC9S12 per BDM clonen“ · Fahrzeugelektronik ·
-
Datei
main.c
#include <msp430x44x.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include "Lcd.h" #include "Kbd.h" #include "atof.h" /* Variablen Deklaration */ //für Sonderzeichen unsigned char
in „Problem mit Timer_A Overflow-Flag bei MSP430“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
I2C.c
******************************************** // // I2C-Library // // Stellt I2C-Routinen für den MSP430F2013 bereit. SDA und SCL werden in der // I2C.h Datei definiert. // // Last update: 20.03.2010 by Mojo // // Original writen by Mathar.com changed by Mojo // //*************************************
in „LCD versagt beim anschließen der BackLight“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcd.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. zur
in „MSP430 Problem mit LCD“ · Mikrocontroller und Digitale Elektronik ·