Search results

  1. D

    Teensy LC with Kinetis Design Studio - hex file not working

    Hello eveyone, I am using Kinetis Design studio for developing code for Teensy LC. I am have downloaded the SDK for MKL26Z64xxx4 which is the CPU in Teensy LC. I wrote code for GPIO blink and compiled it. I got a .hex file in the debug folder. I uploaded the hex file via teensyduino software...
  2. D

    Teensy LC - pinMode code explanation

    Can anyone explain these lines ? void pinMode(uint8_t pin) //OUTPUT { volatile uint32_t *config; config = portConfigRegister(pin); *portModeRegister(pin) |= digitalPinToBitMask(pin); *config = PORT_PCR_SRE | PORT_PCR_DSE | PORT_PCR_MUX(1); } This sets the pin into...
  3. D

    Update firmware of Teensy ++2.0 using another microcontroller over UART

    Hello all, I am working on a project where i have to update the Teensy ++2.0 firmware using another microcontroller over UART. The .hex firmware file of Teensy ++2.0 is converted to bin file using hex2bin converter and is stored on an SD card. The SD card is attached to the master controller...
Back
Top