|
Re: How to write a string to serial?
Hi Kumar
That not works
Thanks
Hi Kumar
That not works
Thanks
|
By
kk <pinganddu90@...>
·
#21
·
|
|
Re: How to write a string to serial?
Hi, depending on where the message is placed, you will not see it on console.
if I remember the hw example in zephyr was implemented on whis way:
void main(void)
{
printf("Hello_x86!
Hi, depending on where the message is placed, you will not see it on console.
if I remember the hw example in zephyr was implemented on whis way:
void main(void)
{
printf("Hello_x86!
|
By
Felipe Neves
·
#22
·
|
|
Re: How to write a string to serial?
Hi Feilpe
I found the "task_sleep()" function in legacy.h, When I add the "task_sleep(500)" and the include file legacy.h, the compiler tell:
undefined reference to `_legacy_sleep'
I am
Hi Feilpe
I found the "task_sleep()" function in legacy.h, When I add the "task_sleep(500)" and the include file legacy.h, the compiler tell:
undefined reference to `_legacy_sleep'
I am
|
By
kk <pinganddu90@...>
·
#23
·
|
|
Re: How to write a string to serial?
My def_config was arduino_101_defconfig.
My def_config was arduino_101_defconfig.
|
By
kk <pinganddu90@...>
·
#24
·
|
|
Re: How to write a string to serial?
You can try changing the serial connections.
Green -> RX
White -> TX
Black -> GND
You can try changing the serial connections.
Green -> RX
White -> TX
Black -> GND
|
By
Qiu, PeiyangX <peiyangx.qiu@...>
·
#25
·
|
|
Re: How to write a string to serial?
Thanks all, I have solve the problem by using:
for(;;)
{
printk("Hello World\n");
}
But those were all garbled on the minicom. How about yours? How yours see the debug information
Thanks all, I have solve the problem by using:
for(;;)
{
printk("Hello World\n");
}
But those were all garbled on the minicom. How about yours? How yours see the debug information
|
By
kk <pinganddu90@...>
·
#26
·
|
|
Can not get any call back when bluetooth connect fail
Hi all,
I am use bluetooth function in NRF52_PCA10040 board, I get a issue that when a central get a connect fail after I call bt_conn_create_le function, it didn’t get any call back.
I do know
Hi all,
I am use bluetooth function in NRF52_PCA10040 board, I get a issue that when a central get a connect fail after I call bt_conn_create_le function, it didn’t get any call back.
I do know
|
By
ghost <hfggw@...>
·
#27
·
|
|
Re: Can not get any call back when bluetooth connect fail
Hi guiwu gue,
Is this the same issue you've outlined here:
https://jira.zephyrproject.org/browse/ZEP-2005
If so, does the attached patch help?
Johan
Hi guiwu gue,
Is this the same issue you've outlined here:
https://jira.zephyrproject.org/browse/ZEP-2005
If so, does the attached patch help?
Johan
|
By
Johan Hedberg
·
#28
·
|
|
Re: Can not get any call back when bluetooth connect fail
Hi Johan,
Thanks for your reply, I fail to add your batch by "git apply conn-timeout.patch",
I add the modification manually, but the issue still doesn't fix.
What I found is that when the issue
Hi Johan,
Thanks for your reply, I fail to add your batch by "git apply conn-timeout.patch",
I add the modification manually, but the issue still doesn't fix.
What I found is that when the issue
|
By
ghost <hfggw@...>
·
#29
·
|
|
Re: Can not get any call back when bluetooth connect fail
Hi Johan,
Oh, I forgot to answer a question in the previous mail.
--Is this the same issue you've outlined here:
https://jira.zephyrproject.org/browse/ZEP-2005
Yes, it is the same issue.
Hi Johan,
Oh, I forgot to answer a question in the previous mail.
--Is this the same issue you've outlined here:
https://jira.zephyrproject.org/browse/ZEP-2005
Yes, it is the same issue.
|
By
ghost <hfggw@...>
·
#30
·
|
|
Zephyr BLE - use public(fixed) address
Hello,
Can Zephyr allow us to use the HW MAC address of the BLE module while advertising?
I am working on the BLE sample codes in Zephyr 1.6, and noticed that while running the Zephyr BLE
Hello,
Can Zephyr allow us to use the HW MAC address of the BLE module while advertising?
I am working on the BLE sample codes in Zephyr 1.6, and noticed that while running the Zephyr BLE
|
By
Purushothaman, Neha <neha.purushothaman@...>
·
#31
·
|
|
Re: Zephyr BLE - use public(fixed) address
Hi Neha,
Look at BLUETOOTH_INTERNAL_STORAGE:
https://gerrit.zephyrproject.org/r/gitweb?p=zephyr.git;a=blob;f=subsys/bluetooth/host/Kconfig;h=b2e3775f4f07c5cf786de714e8bb1f6524589cd4;hb=HEAD
There
Hi Neha,
Look at BLUETOOTH_INTERNAL_STORAGE:
https://gerrit.zephyrproject.org/r/gitweb?p=zephyr.git;a=blob;f=subsys/bluetooth/host/Kconfig;h=b2e3775f4f07c5cf786de714e8bb1f6524589cd4;hb=HEAD
There
|
By
Luiz Augusto von Dentz
·
#32
·
|
|
Development Environment
Hello to all,
I am new in using Zephyr, but i want to make a project with the arduino due and the Linux OS. So my Question is what Environment i should use for developing a project on Linux for the
Hello to all,
I am new in using Zephyr, but i want to make a project with the arduino due and the Linux OS. So my Question is what Environment i should use for developing a project on Linux for the
|
By
Kevin Stöckl <k_stoeckl@...>
·
#33
·
|
|
Re: Development Environment
Hi Keven,
You would probably want to flash Zephyr onto the Due and then on the Linux host
side, connected with a serial cable (UART) talk to the Due using python or
something anything with a library
Hi Keven,
You would probably want to flash Zephyr onto the Due and then on the Linux host
side, connected with a serial cable (UART) talk to the Due using python or
something anything with a library
|
By
Andersen, John <john.s.andersen@...>
·
#34
·
|
|
Arduino 101 - pinmax of pins with multiple connections.
My project only needs two PWM outputs so I want to switch the two unused PWM to GPIOs. The best candidates are PWM 0 (IO 3) and PWM 1 (IO 5) however these are the pins that are connected to another
My project only needs two PWM outputs so I want to switch the two unused PWM to GPIOs. The best candidates are PWM 0 (IO 3) and PWM 1 (IO 5) however these are the pins that are connected to another
|
By
Graham Stott <gbcstott1@...>
·
#35
·
|
|
Reg: Enable arc to access the spi controller on I/O fabric on C1000
Hi
Please help me on the following queries
I have downloaded zephyr 1.6 and I have applied the patchhttps://gerrit.zephyrproject.org/r/#/c/8708/ to Enable arc to access the spi controller on
Hi
Please help me on the following queries
I have downloaded zephyr 1.6 and I have applied the patchhttps://gerrit.zephyrproject.org/r/#/c/8708/ to Enable arc to access the spi controller on
|
By
Mahendravarman Rajarao (RBEI/EAA10) <Mahendravarman.Rajarao@...>
·
#36
·
|
|
Re: Reg: Enable arc to access the spi controller on I/O fabric on C1000
You can, just be aware that there isn't any builtin mutual exclusion between the x86 and ARC cores in the OS, so if both cores are trying to access the same SPI controller, there will likely be
You can, just be aware that there isn't any builtin mutual exclusion between the x86 and ARC cores in the OS, so if both cores are trying to access the same SPI controller, there will likely be
|
By
Michael Rosen
·
#37
·
|
|
[net]Why not respond RS message
Hi all,
I am development a Ipv6 project now, I have enable the CONFIG_NET_IPV6_ND.
But when the connection establish between two note, the note doesn't processing the RS message.
the log is like
Hi all,
I am development a Ipv6 project now, I have enable the CONFIG_NET_IPV6_ND.
But when the connection establish between two note, the note doesn't processing the RS message.
the log is like
|
By
guiwu.guo <hfggw@...>
·
#38
·
|
|
using Intel ISSM tolos to compile arduino_101_sss
Hi
While having no issues using Intel ISSM toolkit on arduino_101, when I try to compile using arduino_101_sss as target, it complains that
arc-elf32-gcc.exe: error: unrecognized argument in option
Hi
While having no issues using Intel ISSM toolkit on arduino_101, when I try to compile using arduino_101_sss as target, it complains that
arc-elf32-gcc.exe: error: unrecognized argument in option
|
By
Carles Perello
·
#39
·
|
|
★ Zephyr Users, Felipe te mandou uma mensagem
See this email in English, Deutsch, Français, Italiano, Español or 37 other languages. Felipe te mandou uma mensagem
See this email in English, Deutsch, Français, Italiano, Español or 37 other languages. Felipe te mandou uma mensagem
|
By
Felipe Neves
·
#40
·
|