-
Content Count
10 -
Joined
-
Last visited
About MMKC
-
Rank
Member
Contact Methods
-
Website URL
http://diendanti.com
Profile Information
-
Gender
Not Telling
-
Location
VN
-
The answer http://forum.43oh.com/topic/6352-can-i-use-energia-libraries-in-keil/
-
Just Jump out SOP2 This jump just for Forced AP mode or using UniFlash
-
Yes, You can use Energia library in Keil. "class" is type of C++ . There two ways: - define Energia library C++ to C. -use C++ and C in Keil You have some define like this: Check C99Mode and --cpp click right file .cpp in Project -> Options for File File Type : C++ Goodluck
-
Thanks roadrunner84, Have a nice day
-
Hi bluehash, I use Keil and CCS. So Can I share my project without Energia
-
Hi everyone, I'm Vietnameses I'm here want to made friends, and we can exchage about MCU. I have: TM4C123 Launchpad, Connected Lauchpad, CC3200. Improve English skills. --------------------------- Sr for my bad English
-
Your repyle's very helpful. Thanks
-
First, thanks for your reply This is pin map for msp430g553 28 pin /* ************************************************************************ * pins_energia.h * * Energia core files for MSP430 * Copyright (c) 2012 Robert Wessels. All right reserved. * * Contribution: Rei VILO * *********************************************************************** Derived from: pins_arduino.h - Pin definition functions for Arduino Part of Arduino - http://www.arduino.cc/ Copyright (c) 2007 David A. Mellis This library is free software; you can redistribute it and/or mo
-
Hi all, I have a problem with pin map 430g2553 28 PIN What should i do to use this wth Energia ?
-
Hi all, I try to interface hc_sr_04 with msp430g2553, but the result not correctly Tp - P2.0 Echo - P2.1 P2.0 out a pulse about 10us, and then P2.1 capture pulse Here my code #include "msp430g2553.h"#include "Basic_config.h" unsigned int count,oldcap,distance;void Config_init(){ P2DIR &=~BIT1; P2SEL |=BIT1; P2SEL2 &=~BIT1; P2DIR |=BIT0; P2REN |= BIT1; P2OUT &= ~BIT1; TA1CCTL1 |=CM_1 + CCIS_0 + SCS + CAP+CCIE; TA1CTL |= TASSEL_2 + MC_2 + ID_3; WDTCTL = WDTPW + WDTHOLD;} void main(){ Config_init(); while (1){ P2OUT &a