
biza
Members-
Content Count
76 -
Joined
-
Last visited
Everything posted by biza
-
hello friends, I am developing a project to school, and I need control a sensor with use a timer, but studying some code, i find a piece of code really similar what i need to do. the problem is inside of interrupt it's is switch code where he call a function "__even_in_range()", this sintaxe only is knowned on the MSP430 plantaform. In MSP432, no is present. So there anyone can help me change the follwing code used in MSP430 to MSP432? Thanks in advance. #pragma vector = TIMER0_A0_VECTOR __interrupt void Timer0_A0_ISR (void) { switch(__even_in_range(TA0IV, TA0IV_TAIFG)) { c
- 2 replies
-
- ccs
- msp432p401r
-
(and 1 more)
Tagged with:
-
Can you help me , I am a newbie
-
thank you Terjeio, you saved my life, I've been trying to implement this for a long time. My idea is to implement only a larger font to be able to display numbers, for the operate a clock, can you help me to simplify, I think my problem is only in loading the fonts, your code .does a lot, I need something minimalist to show a clock, let me share my code code_b.zip
-
Hello fellows, I need some help, i have get a code http://store.43oh.com/download/uploads/TheTerminal-OLEDDisplay/code/GWDeveloper-OLED_MSP430_USCI.zip. Now I have made some changes and I get the code working correctly, This display shows 4 lines of 8 pixels each, the code is implemented to work with a 6x8 font that is displayed correctly. I need to run a larger font, can anyone help me to rewrite the source code correctly that allows me to view a larger font correctly.
-
Hello, Can anyone share with me the access to the code that allows loading large fonts. this is the link I'm following the code http://doc.43oh.com/BoosterPack:OLED#Connecting_the_OLED_Terminal_BoosterPack
-
Hi, sorry for the late answer, I'm using msp432P401R I am using code composer studio CCS at the moment I was able to transmit data from msp432 to bluetooth yes I will attach the code that can be tested with the application for smartphone BT Simple Terminal for android there are two issues or problems I have that I can not solve: Using an HC-05 chip or the microchip RN-41 how can I detect through code if the smartphone is paired with one of these devices.(the idea is if you are paired to start sending data to the mobile phone, if you are not waiting fo
-
Hello , I'am trying develop a data logger to send data to a device through bluetooth, but in my state machine i want make a state were I can verify if the bluetooth is paired with smartphone, does anyone can help me , i don't have idea how can I do this.
-
I have Install Arduino Software and right click to Show Package Contents. Find and copy Contents>Java>arduino-builder and i install to the ftdi drivers.
-
My problem is solved , My MSP430G2553 run now on mac
-
Hello my friends, I have a macbookPro with macOS highSierra and I installed the latest version of IDE energy. After that I tried to compile the basic blink example. Following error was returned: ino2cpp: error: sketch directory '{build.project_path}' doesn't exist or isn't a directory. exit status 1 Error compiling for board RED LaunchPad w/ msp432 EMT (48MHz). Can someone help me? I would like to have energia functional.
-
Thanks for answering Rei Vilo I have two boards, at the moment I am trying to run the msp430g2553, everything is well configured. I can not find any drivers
-
Hello friends, I have a problem with installing sdk Energia on mac. After doing the installation I tried to run an example and gave me the following error... When I try to select a usb port, it does not show any available
-
solved
-
can anyone some help me? I have some problems with user rtc configuration in msp432 I made a firmware where the user choose by hardware configuration adjust date and time (alarm clock). The problem is ... after the user adjust date and time I would like use the rtc to control the watch and show the current date and time in a lcd. The problem is ... after the user adjust date and time I would like use the rtc to control the watch and show the current date and time in a lcd. Soo i need some help in two things pass the user value (decimal) to hexadecimal or BCD and the inverse get the hexadec
-
can anyone some help me? I have some problems with user rtc configuration in msp432 I made a firmware where the user choose by hardware configuration adjust date and time (alarm clock). The problem is ... after the user adjust date and time I would like use the rtc to control the watch and show the current date and time in a lcd. The problem is ... after the user adjust date and time I would like use the rtc to control the watch and show the current date and time in a lcd. Soo i need some help in two things pass the user value (decimal) to hexadecimal or BCD and the inverse get the hexadec
-
Hi fellows, I have some facing some problems with interface on sensor TMP006, now I have done the I2C driver in CMSIS, the problem is in the TMP006 file, I can not configure the registers to make the conection with i2c protocol I2C.c I2C.h tmp006.c tmp006.h
-
Hello Rei Vilo, it was not my intention to post more than once, something wrong happened, to post the post several times
-
Hello Fellow, I need some help with a code excerpt, i can't convert this following code of MSP430F5529, into a code of MSP432. someone can help me? void Set_DMA_SPI(void) { DMACTL0 = DMA0TSEL_12; // USCI_B0 Transmit Ready Trigger //DMA0SA = (void (*)())&UCB0RXBUF; // Source block address //DMA0DA = (void (*)())ADC_Read_data; // Destination single address DMA0SZ = 16; // Block size DMA0CTL = DMADT_4 + DMADSTINCR_3 + DMADSTBYTE + DMASRCBYTE;
-
Hello Friends, Now I facing some problems with getting correct readings of ADC ports in MSP432. I Am using a multimeter to get the viability of the correct process. I am using CCS 7.0 and CMSIS mode writing code. My question... it's normal the measurements not be stable? I am using P5.5 pin port (A0) and this pin have different values of voltage, or any time change the value. It' is normal? I leave my code for get the readings for the ADC. #include "msp.h" /*DEFINE VAR LIKE A INTEGER*/ volatile int value_adc; void ADC_Initialize(void){ /*CONFIGURE LED OUTPUT*/ P1->OUT &