KurtE
Reaction score
103

Latest activity Postings About

    • KurtE
      KurtE reacted to wwatson's post in the thread Call to arms | Teensy + SDRAM = true with Wow Wow.
      Here is the SDRAM board and ER-TFTM101-1 TFT working in 8080 8-bit mode. It's a start:) Waiting on some info to try out 16-bit 8080 mode...
    • KurtE
      Sorry been long time since I did much with these displays. Most of this should work the same way as our other drivers... It may depend on what you mean by size. That is not every character has the width and the like: Most are proportional...
    • KurtE
      Me too. But it was in his first line, which my eyes missed on the first readings.
    • KurtE
      It runs on mine, using recent nightly build and current Teensyduino... Using library ILI9341_t3 at version 1.0 in folder: C:\Users\kurte\AppData\Local\Arduino15\packages\teensy\hardware\avr\1.59.0\libraries\ILI9341_t3 However I edited to my...
    • KurtE
      Yep - but I also played with the beta releases 😆 Believe me, I know the feeling! Actually mine is set up to use the Windows Terminal, which I like a lot better!
    • KurtE
      Newer versions of Windows? Like maybe only the last 30 years :LOL: Maybe longer... I am guessing that a large percentage of users on Windows (and probably MAC) almost never have used a command line. So, things like Folders are a lot easier to...
    • KurtE
      Or use a 🔨 😉 Not sure what temperature solder that was used. Mine was a bit stubborn coming off, so I partially cut it off...
    • KurtE
      KurtE reacted to wwatson's post in the thread Call to arms | Teensy + SDRAM = true with Wow Wow.
      Just received the sdram development board today:D I ran through all of the test programs that I know about without a problem. I need to make sure I have all of the pinout info for this board. It is a version 4 board. I thought I would start out...
    • KurtE
      KurtE replied to the thread Multiple SPI at the same time.
      Sorry did not have time today to fully diagnose the issue. But I dos see some issues with the code, although I would think you would still see something. int buffer0[100]; int buffer1[100]; int buffer2[100]; int rxdNum[1]; int rxd1Num[1]; int...
    • KurtE
      KurtE replied to the thread Multiple SPI at the same time.
      Couple of different ways: For example: several of our display drivers have code built into them to allow them to do asynchronous updates. Like my ili9341_t3n library as well as others for ST7735 and ST7789, and ILI9488_t3n library. In these...
    • KurtE
      What happens if you change: ILI9488_t3 screen = *new ILI9488_t3(CS_PIN, DC_PIN, RST_PIN, MOSI_PIN, SCK_PIN, MISO_PIN); to simply: ILI9488_t3 screen(CS_PIN, DC_PIN, RST_PIN, MOSI_PIN, SCK_PIN, MISO_PIN); And not create it using the new operator...
    • KurtE
      KurtE reacted to PaulS's post in the thread Sampling voltage with Teensy 4.1 with Like Like.
      It may well be a worn-out or low quality breadboard. Breadboards vary a lot in quality. A lot of chinese breadboards are very cheap but low quality - you get what you pay for! Two brands stand out: 1. BPS [BusBoard Prototype Systems]. I have...
    • KurtE
      This latest one appears to work... Got the two messages that Defragter mentioned and then: And ran from terminal window and it worked
      • 1711626273508.png
    • KurtE
      Sorry, again at least for me it is really hard to tell. The only thing that Arduino 1.0.5 tells me, was it was done a long time ago. A more meaningful indicator might be what version of Teensyduino, but not by much. The USB types are part of the...
    • KurtE
      Sorry, I am pretty sure there will likely not be support to run on Arduino 1.0.5 with any version of Teensyduino that supports the Teensy 4.x boards. Sorry. I personally have no idea what the Real Time System Custom USB is or was? Maybe others...
    • KurtE
      Should work
    • KurtE
      It would probably be a good thing to do. But not sure how many sketches would be hit that include both SD.h and SdFat.h... But would probably be worth a try.
    • KurtE
      Again not much one can do, without more code, but one thing I noticed: void PlayMode::myNoteOn(byte channel, byte note, byte velocity) { if (synth != nullptr) { synth->oscPlay(40); } } void PlayMode::myNoteOff(byte channel, byte...
    • KurtE
      Microsoft windows, complained twice as mentioned. Then Norton ran on it and said something like, scanned, ... But I think there is a bug in it: C:\Users\kurte\Downloads>hello3 Hello Defragster As I am not Defragster 😉
    • KurtE
      The one main complication you might run into, is what if you wish to build some sketches for other Arduinos that use SdFat. They will not find the libraries that are installed within the Teensy Board installs. If you install the normal...
      • 1711325474345.png
    • KurtE
      Norton complained about 3 times about not a common download, Are you sure... But after that I was able to run it. Norton also scanned it and said nothing is wrong.
    • KurtE
      Sorry for the delay in getting back to you. My guess is that it has a different PID/VID than the one I am using or that is covered in the library. Trying to remember how to sort it out. Lets see if we can figure it out though. First you...
    • KurtE
      I know the USB Host code can tell keyboards the logical state of these through the LEDS( code, which sends out a control packet: driver_[0]->sendControlPacket(0x21, 9, 0x200, 0, sizeof(leds_.byte), (void*) &leds_.byte); Not sure if we listen to...
    • KurtE
      In the case of the ATP, I believe that this is due to the Voltage Regulator they choose for the board. AP7361C states: Wide Input Voltage Range: 2.2V – 6.0V And yes if you build your own board, with different VR or DC to DC converter, you can...
    • KurtE
      The MicroMod is working with the ER-TFTM101-1 display. Still have to get the DMA portion working on the MicroMod. The images were produced in 8-bit mode none DMA, 100ms to display both pictures. I'm sure DMA will speed things up. By the time...
    • KurtE
      Not sure, but most of their carrier boards, have something like: That is from their ATP board schematic. As for AREF, don't see that on their stuff. With Teensy it is probably geared more to the 3.3v pin. I don't believe raw VIN is passed to...
      • 1710938849937.png
    • KurtE
      Note for things like this, I end up using sketcth that @defragster and I played with a long while ago: It sets all of the pins into either INPUT_PULLUP or INPUT_PULLDOWN. You can then take a jumper wire from either GND or 3.3v depending on...
    • KurtE
      Funy you should mention it... I believe one or more of the pages has the ATP pins on them as well... I just so happens, as I mentioned up on the thread about fancy memory :lol: I decided to make a quick and dirty shield for the ATP board, which...
      • 1710279174575.png
      • 1710279573950.png
    • KurtE
      KurtE replied to the thread Compilation errors in this sketch.
      I believe that you need to update the USB descriptor to have JOYSTICK_SIZE=64, which then gives you things like: #elif JOYSTICK_SIZE == 64 void button(unsigned int num, bool val) { if (--num >= 128) return; uint32_t *p =...
    • KurtE
      KurtE replied to the thread Tennsy 4.0 and W25Q64.
      Sorry, I don't know how your image is created and/or stored. The sketch you mention only supports specific format bitmaps Does your run give you additional information, like why it did not like the file? Not sure what you are trying to do, as...
    • KurtE
      KurtE replied to the thread Tennsy 4.0 and W25Q64.
      Hopefully some others might know parts of this better than I do. If you were saying a Teensy 4.1 with one of the versions of the WW35Q64 that is supported that can be soldered to the bottom of the T4.1, I would say that you could have a littleFS...
    • KurtE
      KurtE replied to the thread Schematic different.
      You might want to take a look at this page: https://www.pjrc.com/store/ic_mkl02_t4.html
    • KurtE
      KurtE replied to the thread Teensy 4.1 USB Host issues.
      Sometimes it helps if you show photos of your wiring. Also additional information like, what mouse is it that you are plugging in? For unknown devices I often use the HIDDeviceInfo sketch, as if is a normal HID mouse or the like, it should...
    • KurtE
      KurtE replied to the thread Teensy 4.1 USB Host issues.
      Mouse objects depend on HID Parser objects. Have you tried the example sketches like: Mouse? Maybe try: #include "USBHost_t36.h" USBHost usb_host; MouseController mouse(usb_host); USBHIDParser hid1(myusb); USBHIDParser hid2(myusb); void...
    • KurtE
      Probably should be part of your other thread: You might look around the net for information on PS2... Like: https://karooza.net/how-to-interface-a-ps2-keyboard Looks like Paul has a library for decoding PS2 keyboards...
    • KurtE
      If you look at the T4.1 card, it is pretty easy to hook up both USB Host and USB Device. The Device pins duplicate what is in the USB connector that you connect up to your PC. So yes you can connect up the keyboard to the teensy using the...
      • 1709214979253.png
      • 1709215149608.png
      • 1709215619897.png
    • KurtE
      KurtE reacted to PaulStoffregen's post in the thread Teensy 4.1 or Arduino GIGA R1 with Like Like.
      Specifically regarding Arduino Giga and software, it's pretty clear Arduino has focused on developing certain features. The situation is similar with Teensy, but largely a different set of features. Depending on your perspective, it's easy to...
    • KurtE
      KurtE reacted to wwatson's post in the thread Teensy 4.1 or Arduino GIGA R1 with Haha Haha.
      I saw that as well :unsure:
    • KurtE
      KurtE replied to the thread Teensy 4.1 or Arduino GIGA R1.
      Different reasoning for maybe why giga on Arduino forum 😉 https://forum.arduino.cc/t/lets-discuss-the-arduino-giga-vs-the-teensy-4-1/1209984/16?u=kurte @PaulStoffregen - hopefully they don't know something we don't know... :D
    • KurtE
      KurtE reacted to Rezo's post in the thread Call to arms | Teensy + SDRAM = true with Like Like.
      Meanwhiles, for anyones enjoyment, here is a video of a music player demo running on LVGL v9.0.0 I think there is a lot of room left to optimize. It has two screen sized frame buffers (1.3Mb each) that LVGL writes into, and the eLCDIF reads from...
    • KurtE
      How do you have the backlight hooked up? Like what they show on product page https://www.pjrc.com/store/display_ili9341_touch.htm could up the ohm of resisto. Could hook that pin to io pin and control using pwm…
    • KurtE
      I will try to get back to trying it on this board. Sort of a PIA at times to hook up all of the wires in a secure enough way. So I much easier playing using the other boards. Did find using my camera shifter boards I did during the T4.1...
      • 1708731548709.png
    • KurtE
      🤔I have not seen the problem of using the 8MBtye SDRam on the GIGA for the camera to read into. But when I looked at their schematic their SDRam setup looks very different than what I believe you are doing on these dev boards. That is they...
      • 1708641507400.png
    • KurtE
      KurtE reacted to mjs513's post in the thread Call to arms | Teensy + SDRAM = true with Like Like.
      Just by way of an update @KurtE got the OV7670 and OV7670 video working using the micromod as the test platform. If you try it on the SDRAM something strange is going on. If you use DMAMEM for the framebuffers image is perfect if you use...
    • KurtE
      KurtE replied to the thread Help with Teensy Loader.
      Not something I want to touch. if i were easy to do then maybe Paul would integrate it into teensyloadercli and then others could then migrate it into different apps like TyCommander
    • KurtE
      KurtE replied to the thread Teensyduino 1.59 Released.
      Not sure if to post here and/or on Arduino. Ran into build today that died with: internal error in mingw32_gt_pch_use_address, at config/i386/host-mingw32.c:192: MapViewOfFileEx: Attempt to access invalid address. Had this before, ended up...
    • KurtE
      Forget to ask/mention in previous post. When you said before each buffer write: not sure what you meant here. That is what "Before" if it was before your code updated the buffer to the new contents. then flushing before this would not help. if...
    • KurtE
      For what is worth, back in T4 beta cycle, I was running into issues with the caching getting in the way. Sometimes the cache flush and/or delete could help, other times a royal PIA... That is why I found it sort of amusing that we used the...
    • KurtE
      KurtE reacted to Rezo's post in the thread Call to arms | Teensy + SDRAM = true with Like Like.
      @PaulStoffregen I have been playing around with the eLCDIF and a 24bit 800*480 RGB display using my experimental eLCDIF_t4 library My first experiment was to display a static image loaded into SDRAM - that worked fine. My next experiment was to...
    • KurtE
      KurtE replied to the thread Firmware.hex File.
      Sorry, I have no idea, Could be wrong, but I don't believe that these use boards made by PJRC. You might try asking up on some forum, geared toward the Ender 3d printers. Again good luck
  • Loading…
  • Loading…
Back
Top