Forum Rule: Always post complete source code & details to reproduce any issue!

Search:

Type: Posts; User: sumotoy

Page 1 of 9 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    46
    Views
    20,693

    It works! Thanks! There's another...

    It works! Thanks!
    There's another...
  2. Replies
    46
    Views
    20,693

    Thanks a lot Paul, I try it in a min. Btw I just...

    Thanks a lot Paul, I try it in a min.
    Btw I just discovered that on Firefox 53.0.3 (32 bit) / Win10 cannot see any attachment in this thread, ouch. Had to use Microsoft Edge
  3. Replies
    46
    Views
    20,693

    TyTools solved the problem, at list with Arduino...

    TyTools solved the problem, at list with Arduino IDE, will try on Visual Studio in minutes.
    I didn't know about this tool, very cool!.
  4. Replies
    46
    Views
    20,693

    Thanks guys, happy to be here alive and kicking...

    Thanks guys, happy to be here alive and kicking again, missed all :)
    I think this issue is related to the infamous Windows 10 Creators Update ? I have another notebook still running legacy Win 10...
  5. Replies
    46
    Views
    20,693

    Teensy Loader problems

    Hi guys,
    after very long time it's nice to be here again and say hello to everybody using my hands again.
    after long time and long disease I finally get out, only sad for lost my mother in...
  6. Replies
    226
    Views
    153,646

    I had a surgical operation in July and still not...

    I had a surgical operation in July and still not 100% ok, I'm late with everithing, when I'm ok I will take care of all libraries, sorry but before I cannot even use keyboard!
  7. Amazing KurtE, this is a great new! Version in my...

    Amazing KurtE, this is a great new! Version in my github is from last year, I remember that I had some troubles to add transactions, had to move things in code to get the right SPI flow.
  8. KurtE, I haved to modify a lot to get really...

    KurtE, I haved to modify a lot to get really working SPI with transactions with radiohead library, even paul's version have issues with SPI transactions.
    Unfortunatly this library is a big mess, put...
  9. Replies
    74
    Views
    59,772

    did you try the display alone at 96Mhz? I have 2...

    did you try the display alone at 96Mhz? I have 2 different one here (not adafruit, all chinese) and works at all freq. What you mean for SDCS? The CS for the SD card?
    Another question, did you using...
  10. Replies
    74
    Views
    59,772

    My SSD1351 works even at 120Mhz! Witch SSD1351...

    My SSD1351 works even at 120Mhz! Witch SSD1351 display you have?
  11. Replies
    74
    Views
    59,772

    Pin 2 doesn't seem a legal pin for CS/DC! This...

    Pin 2 doesn't seem a legal pin for CS/DC! This library uses SPI/FIFO so you have to apply at DC pin the same limitations of the CS pin, this mean not all pins can be used (see the informative double...
  12. Replies
    7
    Views
    3,933

    The TFT7735 library uses the same SPI FIFO of...

    The TFT7735 library uses the same SPI FIFO of ILI9341, it uses the 4 byte buffer for SPI0 and of course is really fast, expecially with small displays.
    With Teensy 3.2, speed overclock and SPI fifo...
  13. Replies
    7
    Views
    3,933

    I have a SPI fifo version for TFT7735 here...

    I have a SPI fifo version for TFT7735 here, maybe take a look.
  14. Replies
    76
    Views
    36,108

    I hate to say but, the editor it still...

    I hate to say but, the editor it still indigestive (and I forced myself to use a polite word). The biggest change is the ability to react at negative numbers (!).
  15. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    I wonder if SPIFIFO.h...

    I wonder if SPIFIFO.h in teensy core needs a upgrade, for sure pin 26 is missed....
    I never used it, someone knows anything that use it?
  16. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    Thanks Kurt, reached the same conclusions,...

    Thanks Kurt, reached the same conclusions, without your work on SPI cannot be possible.
    Ive used this library for testing stuff with SPI_FIFO, maybe can be useful to someone.
    thanks defragster,...
  17. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    The last RA8875 ...

    The last RA8875 on github is fine, I'm currently testing also RA8876/77
  18. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    Cannot get work, setting same pin as mine doesn't...

    Cannot get work, setting same pin as mine doesn't do nothing, no activity on PIN 6 or 10 but MOSI and SCLK are fine, also the function pinIsChipSelect(_cs, _dc) cannot get true in SPI1 since only one...
  19. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    SPI1 test

    Kurt, nevermind, it's too weird to me, finded a better solution. Thanks anyway!
    defragster, I got SPI1 working on a test version of TFT_ILI93XX, you don't need to do anything special or change any...
  20. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    Kurt, I'm confused about K65/K66 pin you used for...

    Kurt, I'm confused about K65/K66 pin you used for SPI1 experiments.
    I was supposing use:
    MOSI:0
    SCLK:32
    CS:6
    but you are using:
    DC = 0xe4
    CS = 0xe5
    SCK = 0xe2
    MISO = 0xe3
  21. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    I think I've got it working, I don't use at all...

    I think I've got it working, I don't use at all pcs_command, always pcs_data ( cs pin ) and separate conventional (for now) gpio method for dc so it can be any pin.
    Since it's K66 related, maybe we...
  22. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    Since DC is used only during data strem it can be...

    Since DC is used only during data strem it can be done, I will try later, will be not as fast.
    For sure I have to avoid pinIsChipSelect(uint8_t pin1, uint8_t pin2) an use pinIsChipSelect(uint8_t...
  23. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    Thanks Kurt, was really easy to do something, at...

    Thanks Kurt, was really easy to do something, at list it compile. I'll try in a min.
    I have modded another library, really similar to t3_ILI9341, at list can drive the same display so it's possible...
  24. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    Defragster, it should work! This library uses...

    Defragster, it should work!
    This library uses the same SPI FIFO of t3_ILI9341.
    Thanks Kurt for the overall work on SPI, I was working last week and followed every update, tested as well between...
  25. Replies
    74
    Views
    59,772

    Added SSD1351 and started beta stage. Modified...

    Added SSD1351 and started beta stage. Modified the first post.
    Officially those libraries are now part of SSD_13XX.
  26. Replies
    74
    Views
    59,772

    Support for SSD1332 done, and works in any...

    Support for SSD1332 done, and works in any rotation, it's a bit slower than SSD1331 but much faster than before. Please report in github any problem!
  27. Replies
    74
    Views
    59,772

    A preview is Online...

    A preview is Online, tested only with SSD1331 and all Teensy's (should be compatible with K's as well) It's really fast (much more than benchmarks above).

    UPDATE:
    I'm currently adding SSD1332,...
  28. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    I just tested with T3.0, T3.2 and T3.5 (180Mhz)...

    I just tested with T3.0, T3.2 and T3.5 (180Mhz) and works, there's no so big changes from p7, a couple of bug fixed and the K64/66 identifiers.
    I have a couple of yellow pin display here, the...
  29. Replies
    16
    Views
    13,403

    In SPI library.cpp, function bool...

    In SPI library.cpp, function
    bool SPIClass::pinIsChipSelect(uint8_t pin1, uint8_t pin2)
    There's a debug serial that should be commented:

    Serial.printf("pinIsChipSelect %d %d %x %x\n\r", pin1,...
  30. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    The right one is the 1.0p8...

    The right one is the 1.0p8, sorry for the github confusion, I keep master for legacy purposes
  31. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    Paul, you can include TFT_ILI9163C...

    Paul,
    you can include TFT_ILI9163C with mods for K64 and K66?
  32. Replies
    16
    Views
    13,403

    installed and run fine here so far... Win 10/64

    installed and run fine here so far... Win 10/64
  33. Replies
    74
    Views
    59,772

    The SSD1331 it's hard, it has lot of hardware...

    The SSD1331 it's hard, it has lot of hardware issues and again the datasheet is almost useless so it's a slow process but at the end I'm getting slowly out of this.
    Currently library is not public,...
  34. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    I had the same issue one week ago. I was on Win...

    I had the same issue one week ago. I was on Win 10, 2 different PC, no way, unrecognized device and no serial port appears.
    In the past I've experienced similar issues with 3.2, it was the serial...
  35. Replies
    74
    Views
    59,772

    Only with Teensy is possible sharing (always in...

    Only with Teensy is possible sharing (always in theory) DC, this is a feature of SPI FIFO that is not possible with other CPU's.
    Also, Zero is NOT supported (now and in the near future).
  36. Replies
    74
    Views
    59,772

    Many? did you mean multiple instances on the same...

    Many? did you mean multiple instances on the same CPU? On Teensy it's possible (in theory) have many OLED 1331 by sharing MOSI,SCLK,DC, just CS should be separate for each display, but I need to do...
  37. Replies
    74
    Views
    59,772

    I know, I'm terrible late on this but had to get...

    I know, I'm terrible late on this but had to get more of these display's because I'm ran out.
    I have started a new library for this display series, I'm still a little busy on K66 changes but at list...
  38. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    I thought I was reading a book Of Edgar Allan Poe...

    I thought I was reading a book Of Edgar Allan Poe for the holidays but I think it's inevitable that I read 2Kpages K66 sub family manual...
  39. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    Thanks manitou, this explain my headaches of...

    Thanks manitou, this explain my headaches of today! So the SPI1 and SPI2 should be similar to Teensy LC? At list it should be slower, have to rewrrite my testing SPI_FIFO...

    Thanks KurtE, I've...
  40. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    KurtE, in your mods in SPI.h, should correct...

    KurtE,
    in your mods in SPI.h, should correct this? SIM_SCGC6 |= SIM_SCGC6_SPI1;//was SIM_SCGC6_SPI0

    Currently working on avr_emulation.h for enabling SPI1 FIFO, still not working but at list not...
  41. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    I quote this, looks better!

    I quote this, looks better!
  42. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    This library is old, I have abandoned it. New one...

    This library is old, I have abandoned it. New one il called TFT_ILI93XX and it's ready for K64/K66
    Thanks kurtE for the SPI mods, even if not officially accepted I'm currently testing with this raw...
  43. Replies
    559
    Views
    376,547

    what about a Teensy 1000...

    what about a Teensy 1000 (1000 core) :rolleyes:
    1.78 Trillion Ops/sec

    Just joking...
  44. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    I've runned some SPI as burn test for a while....

    I've runned some SPI as burn test for a while. Get stuck a couple of times (SCLK HIGH and CPU freezed). Doing same at lower speed was not a problem.
  45. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    Not really, the serial remain stuck but appears...

    Not really, the serial remain stuck but appears correctly in arduino or terminal and, most interesting, remain stuck between restarts!
    I have installed a serial analyzer yesterday to understand...
  46. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    About serial hangs.... Remove driver and...

    About serial hangs....
    Remove driver and reinstall not works, looks like the port is stuck and remain stuck between restarts.
    I got the same problem on a second laptop, win7/64 as well, happened an...
  47. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    Ok, now I have this issue. On Win7/64 from...

    Ok, now I have this issue.
    On Win7/64 from yesterday the K66 continue asking:
    "Teensy did not respond to a USB-based request to automatically reboot.
    Please press the PROGRAM MODE BUTTON on your...
  48. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    EEPROM confirmed work, writed some data and get...

    EEPROM confirmed work, writed some data and get back after a power cycle.
    Tested Serials at various speed and all seems work (btw,not tried the lower speeds)
    Noticed that SPI performances vs CPU...
  49. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    About SPI, just a placeholder for testings.... ...

    About SPI, just a placeholder for testings....


    #if defined(__MK64FX512__) || defined(__MK66FX1M0__) //Teensy 3.4/3.5
    if ((_mosi == 11 || _mosi == 7) && (_miso == 12 || _miso == 8)...
  50. Thread: K66 Beta Test

    by sumotoy
    Replies
    1,558
    Views
    968,763

    Nevermind. SPI1 and SPI2 for KINETISK are...

    Nevermind. SPI1 and SPI2 for KINETISK are currently not present inside SPI.cpp
    Trying to update SPI library...
Results 1 to 50 of 421
Page 1 of 9 1 2 3 4