Search results

  1. BriComp

    Teensy 4.1 UDP causes reboot after upgrading Teensyduino from 1.56.2 to 1.62.0

    If you show your code someone might be able to help you. (FORUM RULES)
  2. BriComp

    Odd compiler warning?

    One of the benefits of using C/C++!
  3. BriComp

    Linker error when using unordered_map

    ld.exe: C:\Program Files (x86)\Arduino\hardware\tools\arm\bin\..\lib\gcc\arm-none-eabi\15.2.1\..\..\..\..\arm-none-eabi\lib\thumb\v7e-m+fp\hard\libstdc++.a(hashtable_c++0x.o): in function std::__detail::_Prime_rehash_policy::_M_next_bkt(unsigned int) const hashtable_c++0x.cc*...
  4. BriComp

    Replacing 7805 with Buck converter.

    Why not use one of these? It's a switch mode psu as a direct plug in replacement for a 7805.
  5. BriComp

    Teensy LC

    The bootloader chip reads the MCU SN and locks itself to that MCU. If you get a new MCU you WILL need a NEW bootloader chip.
  6. BriComp

    TFT Display

    Hi @Turby, I see you use my Nextion library. Some time ago I updated it to version 2, called Nextion2. I am currently working on a version 3. The latest does not include many updates, just sorts out some potential problems. Edit: I should have said that Nextion2 has many enhancements and is...
  7. BriComp

    TFT Display

    I use nextion (Intelligent Series) with my own library.
  8. BriComp

    How to get RTC from Teensy 4.0 (after power down, and the back up)

    The Teensy has TWO clocks. The Teensy clock and the RTC clock. These need to be synched. In your setup put setSyncProvider(getTeensy3Time); I believe that this links the two clocks together. To get the time when running use time_t getTeensy3Time() { return Teensy3Clock.get(); } Of course...
  9. BriComp

    How to get RTC from Teensy 4.0 (after power down, and the back up)

    Yes, that's why I always use RV-3928_C7. I've had one going for years on the original battery. Extremely accurate as well.
  10. BriComp

    How to get RTC from Teensy 4.0 (after power down, and the back up)

    He says he has:- Teensy 4.0 connected to nothing except CR2032 connected to VBAT and GND
  11. BriComp

    Call to arms | Teensy + WiFi = true

    I note the plan to have the aerial directly above (or below) the metal can of the SD Card reader. How will this affect the aerial performance?
  12. BriComp

    USB transmit buffers

    Change // initialize USB serial port Serial.begin(115200); a = micros(); while(!Serial) { if ((micros() - a) > USBTimeout) { break; } } to // initialize USB serial port Serial.begin(115200); while (!Serial & millis() < 3000) {} //...
  13. BriComp

    NE5532 - spec changed - without part number change

    Here is a YouTube video showing the changes made to the TI part, highlighting potential problems using this part. Just as a snippet, the slew rate has almost HALVED!
  14. BriComp

    Teensy 3.6 boards for sale

    Where are you?
  15. BriComp

    NE5532 - spec changed - without part number change

    Note that this ONLY applies to the Texas Instruments version of the part.
  16. BriComp

    Using TD1.62B3 with Dev Board 4 or 5

    Given that this may be detrimental to the life the Teensy I would recommend that it is NOT part of a library ( that would make it too easy to apply ) but a method on how to achieve it should be CLEARLY documented. i.e. make it available but not too easy. The user MUST explicitly want to make the...
  17. BriComp

    Problem in Teensy 4.1

    From @Paul. Although it quotes Teensy 4.0, I believe the sequence/requirements are the same for Teensy 4.1.
  18. BriComp

    teensy 4.1 mouse+mouse injected movments

    When posting code, can you do it between code tags using the </> button. It makes your code so much more readable and therefore more likely to get a responce. I have posted your code below so you can see the improvement. #include <Arduino.h> #include <USBHost_t36.h> #if...
  19. BriComp

    Basic Teensy 4.1 GPX Logger

    Keep a log of filename(s) in EEPROM.
  20. BriComp

    New here... Teensy 3.5 questions

    Thanks @Paul, over to you @bmwcyclist.
  21. BriComp

    New here... Teensy 3.5 questions

    @PaulStoffregen this gentleman is trying to contact yourself, as requested, but is having problems. Could you investigate.
  22. BriComp

    New here... Teensy 3.5 questions

    The server is currently down, and being rebuilt. I might be up later today.
  23. BriComp

    PJRC main web server down today

    Still OK (PJRC) in the UK.
  24. BriComp

    May i contact to "Bleep Labs."???

    Having examined the audio library supplied with Teensyduino I cannot find the example you mention above. I do not believe that it is Paul's code.
  25. BriComp

    Teensyduino 1.61 Beta #1

    @Paul You have the wrong address here "Arduino 1.8.x, Windows: https://www.pjrc.com/teensy/td_160-beta1/TeensyduinoInstall.exe" should be "Arduino 1.8.x, Windows: https://www.pjrc.com/teensy/td_161-beta1/TeensyduinoInstall.exe"
  26. BriComp

    New Teensy 4.1 DIY Synthesizer

    I might be wrong, but one advantage I see of using Serial between the Teensys is that you just do a Serial.print.... and it's all buffered and your code can go and get on with other things.
  27. BriComp

    TeensyThreads and external interrupts

    You might want to look at the Snooze library. It is included with Teensyduino.
  28. BriComp

    Communication Uart/i2c between teensy And Arduino???

    For UART (RFx,Tx) level shifting, better to use ADUM1201.
  29. BriComp

    Inefficient wall warts

    When powering a Teensy project I invariably use a Raspberry Pi Power adaptor. They are usually well priced and I guess of sufficient quality.
  30. BriComp

    Developing remotely on a Mac?

    I have no problem doing T4.0 on Arduino IDE 1.x.
  31. BriComp

    Teensy 4.0: LCD screen via I2C on wire2

    It would depend upon the circuit of the LCD. I am not familiar with PlatformIO but you program still has #include <LiquidCrystal_I2Cw2.h> and potentially not #include "LiquidCrystal_I2Cw2.h". PlatformIO is complaining that it cannot find LiquidCrystal_I2Cw2.h.
  32. BriComp

    Teensy 4.0: LCD screen via I2C on wire2

    As Paul mentioned if you have LiquidCrystal_I2Cw2.h in the "Libraries" directory use #include <LiquidCrystal_I2Cw2.h> else if it's in the same directory as your program use #include "LiquidCrystal_I2Cw2.h". If you want the ultimate guarantee use #include "C:\Location of...
  33. BriComp

    Teensy 4.0: LCD screen via I2C on wire2

    I think that in order to fully understand what is going on, you need to get some idea of the interface board circuit. I am pretty sure that R5 and R6 are I2C pull up resistors. We need to determine what J1, J2 and J3 do. Also what is Q1? If we can generate a circuit then we will be better...
  34. BriComp

    Teensy 4.0: LCD screen via I2C on wire2

    OK, lots of things here. If the display is a Buydisplay.com display, and I have no reason to believe that it isn't, 1) If you were to buy the display from Buydisplay.com, you are asked if you want a 5V interface or 3.3V interface. Which version do you have!? If you have the 5v version you will...
  35. BriComp

    Teensy 4.0: LCD screen via I2C on wire2

    ... also, what is the motherboard you are using?
  36. BriComp

    Teensy 4.0: LCD screen via I2C on wire2

    Can you tell us the exact display module 6that you are using, so that we may be able to look it up. Someone might even have the display and be able to more easily work out why it is not working.
  37. BriComp

    where can I find the BOM for the ADAU1966A test board?

    No problem. I'm glad you found the information you required.
  38. BriComp

    where can I find the BOM for the ADAU1966A test board?

    To save others translating there it is:- OK, thank you for your reply. I think I've found it.
  39. BriComp

    Teensy 4.0: LCD screen via I2C on wire2

    The one (library) that I highlighted does.
  40. BriComp

    Teensy 4.0: LCD screen via I2C on wire2

    You could look at this one. Has an ability to choose which wireX to use. Alternatively you could choose a library with a fixed wire and change all entries to wire2 or wire3.
  41. BriComp

    where can I find the BOM for the ADAU1966A test board?

    I suggest you look on the manufacturers web site.
  42. BriComp

    SWD with Teensy MicroMod?

    Here goes the First Chapter, just dealing with installation. Download Visual Studio Community [VS](free) from here. Install the program..during installation the following screen will appear. I have selected all the items that I require but as a minimum you MUST select the two items circled…...
  43. BriComp

    SWD with Teensy MicroMod?

    Ok, I will try and put something together. It might take a little while, I will have to set up a target system first.
  44. BriComp

    SWD with Teensy MicroMod?

    For large projects I use Visual studio, writing to a "Phantom Teensy i.e. simulating the Teensy bits I am interfacing". That way I can single step where necessary and find the problems in my code. I even use it with Nextion code, which is extremely difficult to debug..no serial.print. Like the...
  45. BriComp

    AnalogRead() seems broken on one pin

    This is w hat we need to see the circuit for. It's quite possible that the ADC has been damaged by input voltage.
  46. BriComp

    AnalogRead() seems broken on one pin

    If we can see your circuit schematic and/or photo of your layout we may be able to help.
  47. BriComp

    PS2Keyboard and CTRL

    I don't think so, Teensy has it's own library PS2Keyboard.h.
  48. BriComp

    PS2Keyboard and CTRL

    As far as I can see there is nothing about that library that is specific to PJRC or Teensy. Perhaps you should contact the author at paul@pcserviceselectronics.co.uk.
Back
Top