Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people's questions, and connect with other people.

Have an account? Sign In
Continue with Facebook
Continue with Google
or use

What is the capital of Egypt? ( Cairo )

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people's questions & connect with other people.

Sign Up Here
Continue with Facebook
Continue with Google
or use

What is the capital of Egypt? ( Cairo )

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Volt.Tech

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask question.

Continue with Facebook
Continue with Google
or use

What is the capital of Egypt? ( Cairo )

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

volt.tech Logo volt.tech Logo
Sign InSign Up

volt.tech

volt.tech Navigation

  • Home
  • About Us
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Tags
  • Category
    • Amplifiers
    • Passives & Protection
    • Clocks & Timing
    • Diodes & Rectifiers
    • FPGAs & PLDs
    • Interface ICs & Transceivers
    • LEDs & Optoelectronics
    • Memories
    • MEMS & Sensors
    • Microcontroller
    • Power Management
    • RF & Microwave
    • Security & Smart Card
    • Motor Drivers
    • Wireless Connectivity
  • Groups
  • Add group
  • Badges
  • Help
  • Home
  • About Us
  • Contact Us

Alex thomas

3 Visits
0 Followers
32 Questions
Home/Alex thomas/Questions
  • About
  • Questions
  • Polls
  • Answers
  • Best Answers
  • Followed Questions
  • Favorite Questions
  • Groups
  • Joined Groups
  • Managed Groups

volt.tech Latest Questions

Alex thomas
  • 0
Alex thomas
Asked: June 5, 2023In: Microcontroller

R_SPI_Write Read is non-blocking?

  • 0

Hi, I need to read SPI registers from the assignment as well as ISR. So setting a flag isn’t an option and I can’t take semaphores from ISR. Is there a way to block the R_SPI_WriteRead function? Thank You Alex Thomas

Hi,

I need to read SPI registers from the assignment as well as ISR. So setting a flag isn’t an option and I can’t take semaphores from ISR.

Is there a way to block the R_SPI_WriteRead function?

Thank You

Alex Thomas

Read less
assignmentRegisterssemaphoresspiwriteread
  1. Julian White
    Added an answer on June 7, 2023 at 9:52 am

    Hello Alex, By default, the perpetration of the drivers in FSP is nonblocking. This is happening to improve the effectiveness of your code. That is the reason callback functions are added in order to be sure that the operation you want to perform is completed. Let's say for example that you want toRead more

    Hello Alex,

    By default, the perpetration of the drivers in FSP is nonblocking. This is happening to improve the effectiveness of your code. That is the reason callback functions are added in order to be sure that the operation you want to perform is completed.

    Let’s say for example that you want to perform a UART read, and you call R_SCI_UART_Read() API, this API’ll return immediately and your code will enter the callback function you created in order to check if data is ready and if the read operation is actually completed.

    In case you would like to make blocking the operation of R_SPI_WriteRead() maybe you should consider adding a wait after the call of the API in your code by using R_BSP_SoftwareDelay(), if this is what you’re meaning.

    By making tests you can find the proper delay you need to set.

    Thank you!

    Best Regards,
    Julian White

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  • 1 Answer
Answer
Alex thomas
  • 0
Alex thomas
Asked: May 18, 2023In: MEMS & Sensors

How do I connect STEVAL- MKI234KA evaluation kit with STEVAL- MKI109V3 motherboard?

  • 0

Hello Team, I am testing to apply the STEVAL- MKI234KA evaluation kit with the recommended STEVAL- MKI109V3 motherboard. Upon starting the unico software I get an error saying the board doesn’t react, and the device may not be supported. How do ...Read more

Hello Team,

I am testing to apply the STEVAL- MKI234KA evaluation kit with the recommended STEVAL- MKI109V3 motherboard. Upon starting the unico software I get an error saying the board doesn’t react, and the device may not be supported. How do I connect?

Thank You

Alex

Read less
evaluationkitmki109v3mki234kamotherboardsteval
  1. Julian White
    Added an answer on May 19, 2023 at 10:19 am

    Hi @Alex did you upload the STEVAL- MKI109V3 the latest firmware version? However, you can discover it in the FIRMWARE ProfiMEMSTool board folder, If not. It should be version v.3.48.3. Thank You Julian White

    Hi Alex thomas

    did you upload the STEVAL- MKI109V3 the latest firmware version?

    However, you can discover it in the FIRMWARE ProfiMEMSTool board folder, If not. It should be version v.3.48.3.

    Thank You

    Julian White

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  • 1 Answer
Answer
Alex thomas
  • 0
Alex thomas
Asked: May 3, 2023In: Wireless Connectivity

Enter download (bootloader) mode from the software on ESP32- C3?

  • 0

Hello. Is there a way to enter bootloader/ download mode by calling a certain function in the user app? For example, I am aware of a function CODE SELECT ALL esp_restart() that will only reset the CPU and it’ll boot back to the user ...Read more

Hello.

Is there a way to enter bootloader/ download mode by calling a certain function in the user app?
For example, I am aware of a function

CODE SELECT ALL
esp_restart()

that will only reset the CPU and it’ll boot back to the user app.
But what I want is another function or a number of codes that resets the CPU and makes it so that it wouldn’t jump to the user app and rather would stay in the bootloader.
I searched, but could not discover any information on that. I tried configuring GPIO9 strapping pin as an output, writing 0 to it, and calling the esp_restart() function, but that did not work, probably because strapping pins aren’t sampled after the software reset.

Thank You

Read less
bootloadercpuesp32espressifgpio9
  1. Julian White
    Added an answer on May 5, 2023 at 10:00 am

    Hello @Alex, Probably. Note that this register is typically intended for DWC- OTG use, and as the C3 doesn't have this, I am not sure if we tested the functionality there, but you can try the following CODE SELECT ALL (RTC_CNTL_OPTION1_REG,RTC_CNTL_FORCE_DOWNLOAD_BOOT); esp_restart(); Thank You JuliRead more

    Hello Alex thomas,

    Probably. Note that this register is typically intended for DWC- OTG use, and as the C3 doesn’t have this, I am not sure if we tested the functionality there, but you can try the following
    CODE SELECT ALL

    (RTC_CNTL_OPTION1_REG,RTC_CNTL_FORCE_DOWNLOAD_BOOT);
    esp_restart();

    Thank You

    Julian White

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  • 1 Answer
Answer
Alex thomas
  • -1
Alex thomas
Asked: April 20, 2023In: Wireless Connectivity

ESP32 LoRa SX1276 5V VIN pin?

  • -1

Hey, I am creating a smash barrier controller with ESP32 SX1276 LoRa microcontroller, and I require a 5V external power force, but I can not find anywhere which pin of 5V is the VIN one, I do not want to ...Read more

Hey, I am creating a smash barrier controller with ESP32 SX1276 LoRa microcontroller, and I require a 5V external power force, but I can not find anywhere which pin of 5V is the VIN one, I do not want to ruin my module, so does anyone know this particular module and which of the 5V pins is the VIN one? I have uploaded the board setup for reference purposes. If you want any extra information please let me know.

Thank You

Alex Thomas

Read less
esp32espressifloramicrocontrollermodulepinsx1276vin
  1. nidhi singh
    Added an answer on April 21, 2023 at 10:04 am
    This answer was edited.

    Hello, They are likely both connected to the Vin signal; check with a multimeter if there is continuance between the two pins if you want to make sure. Thank You Nidhi Singh

    Hello,

    They are likely both connected to the Vin signal; check with a multimeter if there is continuance between the two pins if you want to make sure.

    Thank You

    Nidhi Singh

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  • 1 Answer
Answer
Alex thomas
  • 0
Alex thomas
Asked: March 29, 2023In: Wireless Connectivity

ESP32- S3 uploading firmware via internal serial/ JTAG without EN and Boot controllers?

  • 0

Hello, I am designing a PCB that’s using the built-in serial/JTAG controller and OTG peripheral of the ESP32-S3. It can not hold a physical boot or reset buttons. It has a USB-C container with the D/D- lines connected to GPIO20 and ...Read more

Hello,

I am designing a PCB that’s using the built-in serial/JTAG controller and OTG peripheral of the ESP32-S3. It can not hold a physical boot or reset buttons. It has a USB-C container with the D/D- lines connected to GPIO20 and GPIO19, respectively.

Are there any ways of going without buttons for reset or is an external USB to UART IC needed?

For boot mode choosing I exactly hold a jumper that when shorted pulls GPIO0 to GND, is there a better way to do that without a button?

Any help is appreciated.

Thank You

Read less
bootcontrollersesp32firmwaregpio19GPIO20internaljtagpcbserial
  1. ashishgawade
    Added an answer on March 30, 2023 at 11:00 am

    Hello, The USB-serial-JTAG port can usually reset/put the chip into boot mode without any external components. It's still advised to have some way to pull IO0 low for initial programming and during development, if you make a mistake where e.g. your program disables the USB function. A jumper will peRead more

    Hello,

    The USB-serial-JTAG port can usually reset/put the chip into boot mode without any external components. It’s still advised to have some way to pull IO0 low for initial programming and during development, if you make a mistake where e.g. your program disables the USB function. A jumper will perform that function just fine.

    Thank You

    Ashish

     

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  • 1 Answer
Answer
Alex thomas
  • 0
Alex thomas
Asked: March 16, 2023In: Microcontroller

How to use RA2A1 MCU at 5V Power Supply?

  • 0

Hello, I am planning to use RA2A1 MCU for a design with 24-bit ADC sampling and relay control. Because there are many 5V peripherals in this system, it’ll be much simple if the RA2A1 runs at a 5 Volt power supply. Most ...Read more

Hello, I am planning to use RA2A1 MCU for a design with 24-bit ADC sampling and relay control.

Because there are many 5V peripherals in this system, it’ll be much simple if the RA2A1 runs at a 5 Volt power supply.

Most of the RA2A1 examples are running at a 3.3 V power supply, what’s the potential problem if run at a 5 V power supply?

Regards

Alex Thomas

Read less
mcumicrocontrollersmicroprocessorspowerra2a1renesassupplyvolt
  1. vikas Nagpal
    Added an answer on March 17, 2023 at 10:28 am

    Hello, None RA2 family can run from 1.6 V to 5V. The data sheet & hardware user manual that can be found on the Renesas web give further detail. Thank You

    Hello, None RA2 family can run from 1.6 V to 5V.

    The data sheet & hardware user manual that can be found on the Renesas web give further detail.

    Thank You

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  • 1 Answer
Answer
Alex thomas
  • 0
Alex thomas
Asked: March 1, 2023In: Microcontroller

Is switching in MCUBoot is Atomic?

  • 0

Hi, I am curious to understand that switching operations in RA2A1 MCUboot is Atomic. However, what happens if it fails during the exchange operation in MCUboot? If it isn’t atomic programming. Thanks and Appreciate for sharing your knowledge. Best regards, Alex Thomas

Hi,

I am curious to understand that switching operations in RA2A1 MCUboot is Atomic.

However, what happens if it fails during the exchange operation in MCUboot?
If it isn’t atomic programming.

Thanks and Appreciate for sharing your knowledge.

Best regards,

Alex Thomas

Read less
atomicmcubootra2a1renesasswitching
  1. nidhi singh
    Added an answer on March 2, 2023 at 10:37 am

    Hi Alex, The exchange mode for MCU boot uses the scratch area as an intermediate area in order to complete the exchange of the 2 images. The process of switching is done like below. However, then no information is lost, If a power failure occurs. The scratch area must be large enough to store the laRead more

    Hi Alex,

    The exchange mode for MCU boot uses the scratch area as an intermediate area in order to complete the exchange of the 2 images. The process of switching is done like below. However, then no information is lost, If a power failure occurs.

    The scratch area must be large enough to store the largest sector that’s going to be shifted. For RA2 MCUs, the scratch area should be set up to 0x800 when exchange mode is used.

    Regards

    Nidhi Singh

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  • 1 Answer
Answer
Alex thomas
  • 0
Alex thomas
Asked: February 8, 2023In: LEDs & Optoelectronics

Which IC has “HVLED01A” marking code?

  • 0

Hi, I have an IC on the side which is written” HVLED01A” on it and I want to know its output number. I wonder is equal to the” HVLED001A” output number or if it’s another IC? Thank you in advance.

Hi, I have an IC on the side which is written” HVLED01A” on it and I want to know its output number.

I wonder is equal to the” HVLED001A” output number or if it’s another IC?

Thank you in advance.

Read less
codehvled01aICledoptoelectronics
  1. vikas Nagpal
    Added an answer on February 9, 2023 at 4:27 pm

    Welcome, to the community! yes, I can confirm the HVLED001A uses the device marking HVLED01A. Good luck! If the problem is resolved, please mark this content as answered by selecting Select as best,  This will help other users find that answer faster. Thank You

    Welcome, to the community!

    yes, I can confirm the HVLED001A uses the device marking HVLED01A.

    Good luck!

    If the problem is resolved, please mark this content as answered by selecting Select as best,  This will help other users find that answer faster.

    Thank You

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  • 1 Answer
Answer
Alex thomas
  • 0
Alex thomas
Asked: February 1, 2023In: Power Management

SBC TLE9471ESVCAN_UV condition

  • 0

Hii, In TLE9471ES when VCAN_UV is touched off the TLE9471ES will disable the CAN transmitter. That means the CAN event is still in working condition. So, my question is when the VCAN_UV fault is still present can the CAN signals be dependable ...Read more

Hii,

In TLE9471ES when VCAN_UV is touched off the TLE9471ES will disable the CAN transmitter.
That means the CAN event is still in working condition.

So, my question is when the VCAN_UV fault is still present can the CAN signals be dependable to read use for further action?

Thank You

Read less
managementspowertle9471estle9471esvcan_uvtransmitter
  1. nidhi singh
    Added an answer on February 2, 2023 at 10:48 am

    Hii, Thanks for your query. The voltage at the CAN supply pin is covered in CAN Normal and Receive Only Mode. In the case of VCAN Undervoltage signalization via SPI bit VCAN_UV is touched off and the TLE9471ES disables the transmitter stage. If the CAN supply reaches a higher position than the underRead more

    Hii,

    Thanks for your query.

    The voltage at the CAN supply pin is covered in CAN Normal and Receive Only Mode. In the case of VCAN
    Undervoltage signalization via SPI bit VCAN_UV is touched off and the TLE9471ES disables the transmitter stage.
    If the CAN supply reaches a higher position than the under-voltage finding threshold (VCAN>VCAN_UV,r), the transceiver is automatically switched back to CAN Normal Mode.
    The under-voltage finding is enabled if the mode bit CAN_1 = ‘ 1 ’, i.e., in CAN Normal or CAN Receive Only
    Mode. As the Receiver is also powered by the VCAN, in case of insufficient supply, it may not transmit the signals correctly and admit them correctly. PFA for further information.

    Regards,

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  • 2 Answers
Answer
Alex thomas
  • 0
Alex thomas
Asked: January 23, 2023In: Microcontroller

Switching from Community to RA Processor?

  • 0

Hello, We are changing a product from a Community to an RA processor. Can we use the same E2 Studio and switch between SSP and FSP? We’ll have times when we are doing maintenance on the Community product and also doing ...Read more

Hello,

We are changing a product from a Community to an RA processor. Can we use the same E2 Studio and switch between SSP and FSP? We’ll have times when we are doing maintenance on the Community product and also doing dev on the new RA board.

Is there a specific version of E2 that can do this?

Does it make sense, or should we’ve two different E2 setups?

Thanks

 

Read less
e2 studiofspmcuprocessorrarenesasssp
  1. nidhi singh
    Added an answer on January 25, 2023 at 11:19 am

    Hi Alex, The FSP and SSP releases are at a different meter and each version released is tested/ qualified against a specific version of e2-studio. The distribution download of the platform installer will ensure that the proper version of e2-studio will be with the FSP/ SSP version. I advise that youRead more

    Hi Alex,

    The FSP and SSP releases are at a different meter and each version released is tested/ qualified against a specific version of e2-studio. The distribution download of the platform installer will ensure that the proper version of e2-studio will be with the FSP/ SSP version. I advise that you command a different and specific installation for SSP and FSP.

    Thanks & Regards
    Nidhi

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  • 1 Answer
Answer
1 2 … 4

Sidebar

Ask A Question

Stats

  • Questions 418
  • Answers 405
  • Comments 0
  • Best Answers 9
  • Popular
  • Answers
  • Manoj

    Configuration using .dp vision in Infineon XDPL series IC .

    • 5 Answers
  • Linto

    Renesas RL78/G14 ADC interface code

    • 4 Answers
  • Julian White
    Julian White added an answer Hello Alex, By default, the perpetration of the drivers in… June 7, 2023 at 9:52 am
  • ashishgawade
    ashishgawade added an answer Hi, For enabling the automatic password sequencing you can write… June 2, 2023 at 11:23 am
  • ashishgawade
    ashishgawade added an answer Hello, C19 (parallel to Riseth resistor) marked as NC in… May 31, 2023 at 11:41 am
  • Alex thomas
    Alex thomas added an answer It will not. Note that the 3.3 V LDO doesn't"… May 29, 2023 at 10:15 am
  • nidhi singh
    nidhi singh added an answer Hello, Thanks for reaching out to Volt Tech Engineering Community.… May 26, 2023 at 10:30 am

Users

smartzip

smartzip

  • 0 Questions
  • 0 Answers
test10670802

test10670802

  • 0 Questions
  • 0 Answers
cocobellacb

cocobellacb

  • 0 Questions
  • 0 Answers

Explore

  • Tags
  • Category
    • Amplifiers
    • Passives & Protection
    • Clocks & Timing
    • Diodes & Rectifiers
    • FPGAs & PLDs
    • Interface ICs & Transceivers
    • LEDs & Optoelectronics
    • Memories
    • MEMS & Sensors
    • Microcontroller
    • Power Management
    • RF & Microwave
    • Security & Smart Card
    • Motor Drivers
    • Wireless Connectivity
  • Groups
  • Add group
  • Badges
  • Help

Footer

volt.tech

Volt.Tech

Find your spark

About Us

  • About Us
  • Contact Us
  • Groups

Legal Stuff

  • Privacy Policy
  • Faqs

Follow

© 2022 volt.tech. All Rights Reserved
With Love by volt.tech.