Jump to content
43oh

MMKC

Members
  • Content Count

    10
  • Joined

  • Last visited

About MMKC

  • Rank
    Member

Contact Methods

  • Website URL
    http://diendanti.com

Profile Information

  • Gender
    Not Telling
  • Location
    VN
  1. The answer http://forum.43oh.com/topic/6352-can-i-use-energia-libraries-in-keil/
  2. Just Jump out SOP2 This jump just for Forced AP mode or using UniFlash
  3. 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
  4. Thanks roadrunner84, Have a nice day
  5. Hi bluehash, I use Keil and CCS. So Can I share my project without Energia
  6. 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
  7. Your repyle's very helpful. Thanks
  8. 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
  9. Hi all, I have a problem with pin map 430g2553 28 PIN What should i do to use this wth Energia ?
  10. 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
×
×
  • Create New...